[PHP] Editing an existing pdf?

2006-02-28 Thread Jay Contonio
I am just looking for someone to point me in the right direction. I
need to be able to *edit* an existing pdf, not create a new one. I
basically would be adding an image or text from a form to an existing
pdf. Does the PDFLib have an overlay function? These will not be 72
DPI pdf's either.

Thanks.

--
Jay Contonio
http://www.jcontonio.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Help with Acrostix

2006-03-03 Thread Jay Contonio
I am using acrostix so I can add text and photos to an existing pdf.

So far I have the text working with this,

pages[0], $lines);

$image = ax_load_jpeg_file("dingo.jpg", 1, 1, 72);
ax_add_page_elements($doc->pages[0], $image);

header("Content-type: application/pdf");
ax_output_pdf_file($doc);

?>

But the image doesn't addand I've tried multiple ways. Can any of
you help? Here's the function list for acrostix,

http://www.conradish.net/acrostix/functions.html

And the site for acrostix,

http://chernyshevsky.blogspot.com/

--
Jay Contonio
http://www.jcontonio.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php