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