Tagged Questions
3
votes
1answer
899 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
229 views
Inserting/Updating XMP in a PDF?
How can I insert/update some XMP metadata into a PDF file preferably using java ?
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 ...
0
votes
1answer
15 views
Can PDF XML metadata be attached to individual elements of the PDF or just the entire file?
We are looking to embed metadata attached to elements as well as individual page objects in PDF but are not clear on whether XMP would be the right solution. As an alternative we have considered ...
0
votes
2answers
463 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
704 views
Read XMP from existing PDF with iTextSharp
How can I read XMP from an existing PDF file using iTextSharp?