Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.



Is there any API in C# or .net to edit pdf documents?

Like I need to retrieve particular text and replace it with my own text.

Thanks
nRk

share|improve this question
1  
@jheddings: meta.stackoverflow.com/questions/15650/… – RCIX Nov 23 '09 at 5:19
And note that the faq states "No question is too trivial..." – RCIX Nov 23 '09 at 5:23

3 Answers

up vote 5 down vote accepted

This is not possible (in a clean & reliable way), from iTextSharp tutorial:

You can't 'parse' an existing PDF file using iText, you can only 'read' it page per page. What does this mean? The pdf format is just a canvas where text and graphics are placed without any structure information. As such there aren't any 'iText-objects' in a PDF file. In each page there will probably be a number of 'Strings', but you can't reconstruct a phrase or a paragraph using these strings. [...] You can't edit an existing PDF document, by saying: for instance replace the word Louagie by Lowagie. To achieve this, you would have to know the exact location of the word Louagie, paint a white rectangle over it and paint the word Lowagie on this white rectangle. Please avoid this kind of 'patch' work. Do your PDF editing with an Adobe product.

share|improve this answer
Thanks RC, As I am new to editing PDF, but Can I retrieve particulat text and replace with my own Text and save it as new PDF document? – nRk Nov 23 '09 at 6:51
@nrk, no as stated before. You should read the link I provided if you need more info. – RC. Nov 23 '09 at 18:42
Really annoying answer. There is no proof provided that this cannot be done. If iText cannot do it - doesn't mean it cannot be done. – Edward Olamisan May 7 at 20:00
@EdwardOlamisan not a proof, but have you ever seen those copier that can create and send you a PDF? They just scan the input (no OCR) stack all images in a PDF and that's it. Now imagine you have one image from that PDF, do you think you can, whatever the input is, in a reliable way, replace one word on that image (what is a word in a bunch of pixels btw)? If you can, re-capcha might be interested ;) – RC. May 8 at 11:09
@RC Open a PDF in Adobe Acrobat Pro and you will be able to edit the document: add/modify text, add/modify images etc. – Edward Olamisan May 8 at 13:54
show 2 more comments

there are a number of 3rd party libraries (such as apose), but there's not really a native API.

That said, PDF is an open-standard so you can get how the file is structured and parse it on your own.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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