Hi Steve, This seems to be a good alternative. I've found pdflib($), ezPDF (dead?) e this fpdf as different ways to generate pdf. One drawback is that I'd have to construct all my documents 'by hand'. For trully dynamic this is no problem but for those that only differs at the name of the client that would represent too much work for a little gain. After some research it seems that there is a tool called docbook that allows me to convert it's format (a XML based?) into a lot of things, PDF included. Well, I have two ways now: - use a pdf library for those dynamic reports - convert my word documents into docbook (using an editor), put some placeholders and using PHP to replace the placeholders with actual data (such as name, price) and call docbook to generate the pdf. - rm On 3/14/06, Steve Brown <sbrown25@xxxxxxxxx> wrote: > > > I am currently migrating an application originally written with Delphi > to > > PHP. Everything is going fine except the printing of the reports that > does > > not produce the same visual result (i.e does not look the same or has > some > > aligmment issues). > > We generate all of our printed reports using FPDF > (http://www.fpdf.org) to generate PDF files. Its very flexible, can > do must of what you are aksing for, and unlike some alternatives, its > free. PDFs are going to be the easiest way to get total control of > the output. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >