使用 PDF 框我可以将文档附加到 PDF。
PDComplexFileSpecification fs = new PDComplexFileSpecification();
fs.setFile( "Test.txt" );
InputStream is = ...;
PDEmbeddedFile ef = new PDEmbeddedFile(doc, is );
//set some of the attributes of the embedded file
ef.setSubtype( "test/plain" );
ef.setSize( data.length );
ef.setCreationDate( new GregorianCalendar() );
fs.setEmbeddedFile( ef );
Map efMap = new HashMap();
efMap.put( "My first attachment", fs );
efTree.setNames( efMap );
PDDocumentNameDictionary names = new PDDocumentNameDictionary( doc.getDocumentCatalog() );
names.setEmbeddedFiles( efTree );
doc.getDocumentCatalog().setNames( names );
但如何压缩该文件?我知道 PDStream 有方法 addCompression()。我应该用那个吗?
我找到了解决方案:
PDEmbeddedFile embeddedFile = new PDEmbeddedFile(doc, attachedFileInputStream );
List<COSName> list = new ArrayList<COSName>();
COSName filter = COSName.LZW_DECODE;
list.add(filter);
embeddedFile.setFilters(list);
embeddedFile.setFileFilters(null);
embeddedFile.addCompression();