Santosh S
Santosh S

Reputation: 4345

Altering a PDF document in PHP

Is it possible to convert a PDF document to HTML or text and then edit some text of the html/text file and recreate the PDF, all in a PHP script?

Upvotes: 1

Views: 494

Answers (2)

Koekiebox
Koekiebox

Reputation: 5963

I have never seen or attempted todo this.

I find it better/cheaper to do the following:

  • Write the component that will do image intensive processing op a platform like .Net or Java. The application has be be console based and return/print the relevant info (if there was an error in processing etc).
  • Call the command from you php web application.
  • Php is a web language and used best for that purpose.

Upvotes: 0

KV Prajapati
KV Prajapati

Reputation: 94653

Have a look at http://www.pdflib.com/download/

Upvotes: 1

Related Questions