PHP shell compatible with PDFlib API

Are there any wrappers for any other PDF generation packages for PHP that provide API compatibility with PDFlib?

For many years, our company has been creating PDF files in PHP using PDFlib, but it has not been updated from version 5. Now that we are updating some servers, we need to either update or find a replacement. I would like to replace PDFlib with an open source product that allows it to be used for commercial purposes. However, we (foolishly, perhaps) did not write our own wrapper around PDFlib for the first time and had many, many lines of code that would need to be modified and tested.

I understand that I can write my own shell, but I find it amazing that my search so far has not given anyone else who has done the same.

+5
source share
3 answers

If anyone is interested, I opened an open shell that I wrote. It is very minimal - enough for our needs, but it works. See the Github page for more information .

0
source

Maybe this PHP class can help you

+1
source

I personally use fpdf - very powerful and has a lot of user-created scripts to do whatever you can think of.

Also free

0
source

All Articles