PDF_create_pvf

(PECL pdflib >= 2.0.0)

PDF_create_pvfCreate PDFlib virtual file

Описание

bool PDF_create_pvf ( resource $pdfdoc , string $filename , string $data , string $optlist )

Creates a named virtual read-only file from data provided in memory.

Коментарии

Автор:
<?php
$im 
= @ImageCreate (50100)
$background_color ImageColorAllocate ($im255255255);
$text_color ImageColorAllocate ($im2331491);
ImageString ($im155"Test"$text_color);

ob_start();                                                        //turn output buffering on
ImagePNG ($im);                                                    //create PNG
$img_buffer ob_get_contents();                                   //get the PNG of the output buffer 
ob_end_clean();                                                    //clear and turns off this output buffering
pdf_create_pvf($pdf"/pvf/image/image.png"$img_buffer"");     //create a named virtual read-only file 
$img_id pdf_load_image($pdf"png""/pvf/image/image.png"""); //open the named virtual read-only file
pdf_place_image($pdf$img_id507701);                        //Places the image in the PDF-file 
?>
2008-02-27 10:28:17
http://php5.kiev.ua/manual/ru/function.pdf-create-pvf.html

    Поддержать сайт на родительском проекте КГБ