fdf_create
PHP function
Edit on GitHub ✎
(PHP 4, PHP 5 < 5.3.0, PECL fdf SVN)
Create a new FDF document
Description
fdf_create(): resource
Creates a new FDF document.
This function is needed if one would like to populate input fields in a PDF document with data.
Parameters Parameters
Return Values
Returns a FDF document handle, or false on error.
Examples
Populating a PDF document
php
<?php
$outfdf = fdf_create();
fdf_set_value($outfdf, "volume", $volume, 0);
fdf_set_file($outfdf, "http:/testfdf/resultlabel.pdf");
fdf_save($outfdf, "outtest.fdf");
fdf_close($outfdf);
Header("Content-type: application/vnd.fdf");
$fp = fopen("outtest.fdf", "r");
fpassthru($fp);
unlink("outtest.fdf");
?>