[PHP] need advice on project...

2001-07-24 Thread Michael Geier, CDM Systems Admin
Project needs: create document on fly to fax to 100+ customers document will be queued up twice daily for submission document will have a logo branded @ top of page Services used: RedHat 7.1 HylaFax 4.1 PHP 4.0.6 Any insight would be appreciated.

Re: [PHP] need advice on project...

2001-07-24 Thread Rasmus Lerdorf
Does any one have any good code for creating PDF's on the fly with graphic images? Putting an image in a PDF is trivial: ? $pdf = pdf_new(); pdf_open_file($pdf); pdf_begin_page($pdf, 612, 792); // US-Letter size $x = 5; $y = 792-72; $scale = 0.5; $im = pdf_open_jpeg($pdf, logo.jpg);