Details
Description
For some PDF files, the PDFRenderer.renderImage method creates an image with black line clouds on the text that are not visible in the original PDF. Unfortunately, the files contain personal data, so I cannot make them available for examination. The attached screenshots hopefully give a first impression of the problem. Is there any way for me to narrow down the problem or analyze the PDF so that I can provide more information?
The source code does something like this:
try (PDDocument document = PDDocument.load(pdfData)) { PDFRenderer pdfRenderer = new PDFRenderer(document); int pageCount = document.getNumberOfPages(); for (int pageIndex = 0; pageIndex < pageCount; ++pageIndex) { PDPage page = document.getPage(pageIndex); BufferedImage pageImage = pdfRenderer.renderImage(pageIndex); ... } }
Attachments
Attachments
Issue Links
- duplicates
-
PDFBOX-1752 Rendering PDF containing Jpeg2000 fails
- Closed