使用pypdf更改pdf文件的元数据

时间:2010-04-04 14:19:59

标签: pdf metadata pypdf

我想使用pypdf创建/修改pdf文档的标题。似乎标题是只读的。有没有办法访问此元数据r / w?

如果回答是肯定的,我们将不胜感激。

由于

1 个答案:

答案 0 :(得分:8)

您可以使用pyPDF(排序)操纵标题。我在reportlab-users列表中看到了这篇文章:

http://two.pairlist.net/pipermail/reportlab-users/2009-November/009033.html

  

您也可以使用pypdf。   http://pybrary.net/pyPdf/

     

这不允许您编辑元数据   本身,但会让你读一个或   更多pdf文件并吐回来   out,可能有新的元数据。

以下是相关代码:

from pyPdf import PdfFileWriter, PdfFileReader
from pyPdf.generic import NameObject, createStringObject

OUTPUT = 'output.pdf'
INPUTS = ['test1.pdf', 'test2.pdf', 'test3.pdf']

# There is no interface through pyPDF with which to set this other then getting
# your hands dirty like so:
infoDict = output._info.getObject()
infoDict.update({
    NameObject('/Title'): createStringObject(u'title'),
    NameObject('/Author'): createStringObject(u'author'),
    NameObject('/Subject'): createStringObject(u'subject'),
    NameObject('/Creator'): createStringObject(u'a script')
})

inputs = [PdfFileReader(i) for i in INPUTS]
for input in inputs:
    for page in range(input.getNumPages()):
        output.addPage(input.getPage(page))

outputStream = file(OUTPUT, 'wb')
output.write(outputStream)
outputStream.close()