vote up 0 vote down star

I have a pdf file.I need to find all the hyperlinks available in that file and then make change on those links. I am using C# and I'd rather not to use a third party tool!

flag

3 Answers

vote up 2 vote down

You can use iTextSharp. Its an open-source API to manipulate pdf written in c#.

The basic algorithm would be:

  1. Loop through every pages in the PDF file.
  2. For every page, loop through every annotation in the annotations collection (annots dictionary).
  3. If you found an annotation of subtype link, increases your count or do whatever logic you need to do.

RWendi

link|flag
I am having a hard time figureing out the API. Shoud I do something like this: PdfReader reader = new PdfReader("c:\\sample2.pdf"); PdfDictionary dic = reader.GetPageN(1); – Houda Oct 8 '08 at 21:39
vote up 0 vote down

Personally I'd have a hack around with PyPDF..

link|flag
vote up 0 vote down

You might want to look at ActivePDF and PDFTron

link|flag

Your Answer

Get an OpenID
or

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