PDF library for PHP? [closed]

-2

I would like to know which is the easiest and most convenient library to use to download PDF information from a web application made in PHP. In a project I used the FPDF library, but it was a bit tedious to design the data. Which do you recommend?

    
asked by Mario Guiber 06.06.2018 в 09:44
source

1 answer

3

I would recommend it for simplicity HTML2PDF is quite simple to use and practically what you design in HTML can be automatically printed in < em> PDF avoiding the headache of having to draw pixel by pixel the tables and other elements you need in your document.

You can find out more at this link: HTML2PDF

Another alternative (if you do not mind having some integration with java) is to use Ireport which is a very simple tool to generate reports very similar to what is Crystal Reports . Browsing the internet you will find thousands of ways to integrate Ireport with PHP without complications and will allow you to generate reports using practically pure "drag and drop".

More information on Ireport and on integrate Ireport with PHP

I hope it helps. Greetings!

    
answered by 06.06.2018 / 10:05
source