How can I read XMP from an existing PDF file using iTextSharp?

link|improve this question

50% accept rate
feedback

2 Answers

I'd encourage you to check out the iTextSharp.text.xml.xmp namespace.

I've never done what you're trying to do but the XmpReader class looks promising.

link|improve this answer
feedback

I'm dangerously ignorant of itextSharp but this did the job for me:

    PdfReader pdf = new PdfReader(fileName);
    string metadataXml = System.Text.Encoding.Default.GetString(pdf.Metadata);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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