如何使PDF显示文件名而不是标题使用程序?

问题描述 投票:0回答:1

https:/community.adobe.comt5acrobatdefault-to-show-file-name-vs-title-of-doc-when-converting-from-word-to-pdftd-p9673161。

我想在一堆PDF文件中显示文件名而不是标题。我想用一个程序或一个命令行来实现。有什么方法可以做到这一点(python比其他语言更受欢迎)?谢谢。

Adobe Acrobat dialogbox

python pdf pdfbox pypdf2 pdfminer
1个回答
0
投票

用PDFBox。

PDDocument doc = PDDocument.load(...);
PDViewerPreferences vp = doc.getDocumentCatalog().getViewerPreferences();
if (vp == null)
{
    vp = new PDViewerPreferences(new COSDictionary());
}
vp.setDisplayDocTitle(false);
doc.getDocumentCatalog().setViewerPreferences(vp);
doc.save(...);
doc.close();
© www.soinside.com 2019 - 2024. All rights reserved.