vote up 0 vote down star

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?

flag

14% accept rate
What are you trying to achieve? A website that alters a PDF in some way? If you're also outputting a PDF I don't understand why you would want to convert it to HTML first. – therefromhere Sep 5 at 12:20
because i try to edit some text in pdf file , but when i try to open it in php it gives some garbage value instead of text in it. Thats why i am trying to convert it in html/text first (for alteration) . – santosh Sep 5 at 12:28
OK, so you're making something like an online PDF editor? – therefromhere Sep 5 at 12:54
yes @therefromhere – santosh Sep 7 at 8:04

3 Answers

vote up 1 vote down

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

link|flag
And the PHP extension that uses it: php.net/manual/en/intro.pdf.php – therefromhere Sep 5 at 12:59
Though I'm not sure that provides any way of opening an existing file – therefromhere Sep 5 at 13:01
vote up 0 vote down

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.
link|flag
vote up 0 vote down

Or this? :)

http://www.adobe.com/products/acrobat/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.