You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Daniel Egea (JIRA)" <ji...@apache.org> on 2014/11/18 10:49:34 UTC

[jira] [Closed] (PDFBOX-2501) Page render without barcode

     [ https://issues.apache.org/jira/browse/PDFBOX-2501?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Egea closed PDFBOX-2501.
-------------------------------
       Resolution: Done
    Fix Version/s:     (was: 2.0.0)
                   1.8.7

Malformed PDF

Thanks

> Page render without barcode
> ---------------------------
>
>                 Key: PDFBOX-2501
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-2501
>             Project: PDFBox
>          Issue Type: Bug
>          Components: PDModel
>    Affects Versions: 1.8.7
>         Environment: Ubuntu Linux, Java 8
>            Reporter: Daniel Egea
>            Assignee: Tilman Hausherr
>             Fix For: 1.8.7
>
>         Attachments: image.png, iris2_4943659641078733308.pdf, iris2_4943659641078733308_unc.pdf
>
>
> I have tryed this code:
> {code}
>         try {
>             PDDocument doc = PDDocument.load(f);
>             PDPage page = (PDPage) doc.getDocumentCatalog().getAllPages().get(0);
>             BufferedImage image;
>             image = page.convertToImage();
>             File outputfile = new File("/home/daniel/image.png");
>             ImageIO.write(image, "png", outputfile);
>         } catch (IOException ex) {
>             Logger.getLogger(Impresora.class.getName()).log(Level.SEVERE, null, ex);
>         }
> {code}
> Using the PDF attached
> And get the PNG attached
> In the rendering process I get the following error... in the 'convertToImage()' call
> {code}
> 2014-11-14 13:56:12,592 WARN [org.apache.pdfbox.util.PDFStreamEngine] - <java.lang.ArrayIndexOutOfBoundsException>
> java.lang.ArrayIndexOutOfBoundsException
>     at java.lang.System.arraycopy(Native Method)
>     at org.apache.pdfbox.pdmodel.graphics.xobject.PDInlinedImage.createImage(PDInlinedImage.java:218)
>     at org.apache.pdfbox.util.operator.pagedrawer.BeginInlineImage.process(BeginInlineImage.java:69)
>     at org.apache.pdfbox.util.PDFStreamEngine.processOperator(PDFStreamEngine.java:557)
>     at org.apache.pdfbox.util.PDFStreamEngine.processSubStream(PDFStreamEngine.java:268)
>     at org.apache.pdfbox.util.PDFStreamEngine.processSubStream(PDFStreamEngine.java:235)
>     at org.apache.pdfbox.util.PDFStreamEngine.processStream(PDFStreamEngine.java:215)
>     at org.apache.pdfbox.pdfviewer.PageDrawer.drawPage(PageDrawer.java:139)
>     at org.apache.pdfbox.pdmodel.PDPage.convertToImage(PDPage.java:801)
>     at org.apache.pdfbox.pdmodel.PDPage.convertToImage(PDPage.java:732)
> {code}
> One for each of the 4 barcodes in PDF file
> As you can see, te page is rendered OK but without any barcode
> How could I render completily OK?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)