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: [email protected]
For additional commands, e-mail: [email protected]