pdf_open_memory_image

(PHP 3 >= 3.0.10, PHP 4, PECL)

pdf_open_memory_image -- Opens an image created with PHP's image functions

Description

int pdf_open_memory_image ( resource pdfdoc, resource image )

The pdf_open_memory_image() function takes an image created with the PHP's image functions and makes it available for the pdf resource. The function returns a pdf image identifier.

例子 1. Including a memory image

<?php
$im 
imagecreate(100100);
$col imagecolorallocate($im8045190);
imagefill($im1010$col);
$pim pdf_open_memory_image($pdf$im);
imagedestroy($im);
pdf_place_image($pdf$pim1001001);
pdf_close_image($pdf$pim);
?>

See also pdf_close_image() and pdf_place_image().