[
https://issues.apache.org/jira/browse/PDFBOX-3253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15171086#comment-15171086
]
ASF subversion and git services commented on PDFBOX-3253:
---------------------------------------------------------
Commit 1732763 from [~lehmi] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1732763 ]
PDFBOX-3253: collect all COSStreams when creating a new pdf so that they can be
closed when closing the COSDocument
> CLose all COSStreams when creating a new pdf
> --------------------------------------------
>
> Key: PDFBOX-3253
> URL: https://issues.apache.org/jira/browse/PDFBOX-3253
> Project: PDFBox
> Issue Type: Bug
> Components: PDModel
> Affects Versions: 2.0.0
> Reporter: Andreas Lehmkühler
> Assignee: Andreas Lehmkühler
> Fix For: 2.0.0
>
>
> Peter Pusinowski posted on users@ that he got a lot of debug warnings about
> COSStreams which are not closed. He provided the following code to reproduce
> the effect:
> {code}
> public static void generate() throws IOException {
> PDDocument doc = new PDDocument();
> try {
> PDPage page = new PDPage();
> doc.addPage(page);
> PDPageContentStream content = new PDPageContentStream(doc, page);
> BufferedImage bi = ImageIO.read(new File("/tmp/test.png"));
> PDImageXObject img = LosslessFactory.createFromImage(doc, bi);
> content.drawImage(img, 0, 0);
> content.close();
> } finally {
> if (doc != null) {
> doc.save("/tmp/testPdf.pdf");
> doc.close();
> }
> }
> }
> public static void main(String[] args) throws IOException {
> generate();
> generate();
> generate();
> }
> {code}
> I've got the same warnings using that specific code.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]