You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Fabio Brandner (JIRA)" <ji...@apache.org> on 2017/12/15 11:17:00 UTC

[jira] [Created] (PDFBOX-4039) StackOverflowError at renderimageWithDPI with the included PDF-Document

Fabio Brandner created PDFBOX-4039:
--------------------------------------

             Summary: 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
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org