我有一个 python 脚本exiftool
用于更新给定 PDF 中的元数据。exiftool
可以在这里找到文档和下载: PyExifTool
以下是我当前的代码:
if __name__ == '__main__':
from exif_tool import ExifTool, fsencode
source_file = 'D:\\my_file.pdf'
author = 'some author'
keywords = 'some keywords'
subject = 'some subject'
title = 'some title'
with ExifTool('exiftool.exe') as et:
params = map(fsencode, ['-Title=%s' % title,
'-Author=%s' % author,
'-Creator=%s' % author,
'-Subject=%s' % subject,
'-Keywords=%s' % keywords,
'%s' % source_file])
et.execute(*params)
os.remove('%s_original' % source_file)
for key, value in dict(et.get_metadata(source_file)).items():
if key.startswith('PDF:') and ('Author' in key or 'Keywords' in key or 'Title' in key or 'Subject' in key):
print key, value
>>> PDF:Keywords [u'some', u'keywords']
>>> PDF:Title some title
>>> PDF:Subject some subject
>>> PDF:Author some author
上面的代码有效并相应地更新了 PDF 元数据。但是,当我在 Adobe Acrobat 或 Adobe Reader 中查看 PDF 元数据时,主题和关键字的值都显示在关键字字段中。
总的来说,在大多数情况下,这不是一个关键问题,但我可以预见会收到很多关于此的投诉。
我可能只是缺少一些小的配置或设置,但我已经阅读了文档,但我找不到任何解决这个问题的方法。
有没有人有任何想法或想法?