Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My goal is to .paint() a page of a pdf file onto a PDFDocumentGraphics2D. I have this pdf page in the form of a PDPage.

I get an error when I want to write this PDPage onto a PDFDocumentGraphics2D object.

It happends when I use pdfBox's(http://pdfbox.apache.org/) DrawPage function in the PageDraw class. I am giving the function a PDFDocumentGraphics2D object, which is an extension of java AWT's Graphics.

It is part of Apache FOP (http://xmlgraphics.apache.org/fop/). I'm also giving it the PDPage and the dimensions.

I receive this error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

                         at java.util.ArrayList.rangeCheck(Unknown Source)

                         at java.util.ArrayList.get(Unknown Source)

                         at org.apache.pdfbox.io.RandomAccessBuffer.seek(RandomAccessBuffer.java:84)

                         at org.apache.pdfbox.io.RandomAccessFileInputStream.read(RandomAccessFileInputStream.java:96)

                         at java.io.BufferedInputStream.fill(Unknown Source)

                         at java.io.BufferedInputStream.read1(Unknown Source)

                         at java.io.BufferedInputStream.read(Unknown Source)

                         at java.io.FilterInputStream.read(Unknown Source)

                         at org.apache.pdfbox.filter.FlateFilter.decompress(FlateFilter.java:161)

                         at org.apache.pdfbox.filter.FlateFilter.decode(FlateFilter.java:98)

                         at org.apache.pdfbox.cos.COSStream.doDecode(COSStream.java:279)

                         at org.apache.pdfbox.cos.COSStream.doDecode(COSStream.java:221)

                         at org.apache.pdfbox.cos.COSStream.getUnfilteredStream(COSStream.java:156)

                         at org.apache.pdfbox.pdfparser.PDFStreamParser.<init>(PDFStreamParser.java:108)

                         at org.apache.pdfbox.util.PDFStreamEngine.processSubStream(PDFStreamEngine.java:253)

                         at org.apache.pdfbox.util.PDFStreamEngine.processSubStream(PDFStreamEngine.java:237)

                         at org.apache.pdfbox.util.PDFStreamEngine.processStream(PDFStreamEngine.java:217)

                         at org.apache.pdfbox.pdfviewer.PageDrawer.drawPage(PageDrawer.java:119)

                         at dk.sdu.scribble.gui.layers.PageCanvas.paint2pdf(PageCanvas.java:1453)

                         at dk.sdu.scribble.gui.models.ScribblePage.paint2pdf(ScribblePage.java:308)

                         at dk.sdu.scribble.gui.models.ScribbleDocument.paint2pdf(ScribbleDocument.java:602)

                         at dk.sdu.scribble.gui.actions.ExportAsPDFAction.work(ExportAsPDFAction.java:146)

                         at dk.sdu.scribble.gui.actions.AbortableAction$1.run(AbortableAction.java:51)

                         at java.lang.Thread.run(Unknown Source)

Does very specific things have to be set for the PDFDocumentGraphics2D object to be able to use it with the DrawPage function for it to not crash?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.