Smooth PDF files in PHP?

I was wondering if it is possible to smooth PDF files using PHP? I use fpdf to create and map from a collection of PDF files, however, when PHP processed it, the information is missing, such as comments.

Every month I send several thousand PDF files to the company’s website. I need to display comments. I know that I can smooth it out in Acrobat Pro using the JavaScript debugger ( this.flattenPages() ). Is there a way to automate and save information using PHP? While it appears in the document, I'm not too worried.

+6
php pdf flatten
source share
1 answer

There are many tools here, one of which can do what you want:

  • Editing PDF in PHP?
  • Creating PDF Files Using PHP
+1
source share

All Articles