Kevin Ternes created PDFBOX-3026:
------------------------------------
Summary: Acrobat Reader 7.0 cannot open created files
Key: PDFBOX-3026
URL: https://issues.apache.org/jira/browse/PDFBOX-3026
Project: PDFBox
Issue Type: Bug
Components: Writing
Reporter: Kevin Ternes
Fix For: 2.0.0
_Note: This issue is not observed with PDFBox 1.8.10._
_Note: This is observed with recent 2.0.0 builds including
2.0.0-20151013.171100-1760_
A file created by PDFBox can be opened by Reader X and XI. But it cannot be
opened by Reader 7.
For instance, given a file, load.pdf, which can be opened by Reader 7, run the
following:
{code:java}
public class PDFBoxRunLoadSave {
public static void main(String[] args) {
PDDocument pdDocument = null;
try {
pdDocument = PDDocument.load(new File("load.pdf"));
pdDocument.save("save.pdf");
} catch (Exception ex) {
System.err.println("Caught " + ex);
ex.printStackTrace();
} finally {
try { pdDocument.close(); } catch (Exception ex) {
System.out.println("Closing, caught " + ex);
}
}
}
}{code}
The file, save.pdf, will be generated which can be opened by Reader X but
Reader 7 will respond with a popup message, "There was an error opening this
document. The file is damaged and could not be repaired." (See attached
screenshot).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]