Tagged Questions
3
votes
1answer
876 views
reading/writing xmp metadatas on pdf files through pypdf
I can read xmp metadatas through pyPdf with this code:
a = pyPdf.PdfFileReader(open(self.fileName))
b = a.getXmpMetadata()
c = b.pdf_keywords
but: is this the best way?
And ...
2
votes
2answers
5k views
Read/Modify PDF Metadata using iTextSharp
I am trying to use iTextSharp to read/modify PDF metadata. I figured out how to do it using pdfreader and pdfstamper. I was wondering if I could also read/modify additional metadata information like ...
1
vote
2answers
217 views
Inserting/Updating XMP in a PDF?
How can I insert/update some XMP metadata into a PDF file preferably using java ?
0
votes
2answers
448 views
Correct way of parsing XMP XML metadata attached to the end of a PDF file?
I have a PDF with some meta data in XMP XML format attached to the end. What is the correct way of parsing and using this meta data?
At the minute i have a working solution using C99, parsing each ...
0
votes
1answer
697 views
Read XMP from existing PDF with iTextSharp
How can I read XMP from an existing PDF file using iTextSharp?