Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用以下代码通过 pyPdf 读取 xmp 元数据:
a = pyPdf.PdfFileReader(open(self.fileName)) b = a.getXmpMetadata() c = b.pdf_keywords
但是:这是最好的方法吗?
如果我不使用 pdf_keywords 属性?
有没有办法用 pyPdf 设置这些元数据?
据我所知,这是最好的方法——而且没有办法用 pyPDF 更改元数据。