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

Tilman Hausherr closed PDFBOX-4039.
-----------------------------------
    Resolution: Duplicate

Closed as duplicate of PDFBOX-4666, and fixed there.

> StackOverflowError at renderimageWithDPI with the included PDF-Document
> -----------------------------------------------------------------------
>
>                 Key: PDFBOX-4039
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-4039
>             Project: PDFBox
>          Issue Type: Bug
>            Reporter: Fabio Brandner
>            Priority: Minor
>         Attachments: Rechnung_W16_001889.pdf, error_log.txt
>
>
> * Error Log in attachment
> * Code: 
>  
> import java.awt.image.BufferedImage;
> import java.io.File;
> import org.apache.pdfbox.pdmodel.PDDocument;
> import org.apache.pdfbox.rendering.ImageType;
> import org.apache.pdfbox.rendering.PDFRenderer;
> import org.junit.Test;
> import play.Environment;
> public class Pdf2Image2 {
> @Test
> public void MyTest() throws Exception {
> Environment environment = Environment.simple();
> File pdfFile = 
> environment.getFile("/test/resources/qrcodes-in-receipts/Rechnung_W16_001889.pdf");
> final PDDocument document = PDDocument.load(pdfFile);
> for (int page = 0; page < document.getNumberOfPages(); ++page)
> { int thePage = page; BufferedImage bim; PDFRenderer pdfRenderer = new 
> PDFRenderer(document); bim = pdfRenderer.renderImageWithDPI(thePage, 400, 
> ImageType.RGB); System.out.println(bim); }
> }
> }



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to