List of usage examples for org.apache.pdfbox.cos COSDocument addXRefTable
public void addXRefTable(Map<COSObjectKey, Long> xrefTableValues)
From source file:org.apache.padaf.preflight.utils.TestCOSUtils.java
License:Apache License
protected void addToXref(COSDocument doc, COSObjectKey key, long value) { Map<COSObjectKey, Long> xrefTable = new HashMap<COSObjectKey, Long>(1); xrefTable.put(key, value);/*from w w w. j a va2s .co m*/ doc.addXRefTable(xrefTable); }