[
https://issues.apache.org/jira/browse/PDFBOX-3776?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jon Ominsky updated PDFBOX-3776:
--------------------------------
Comment: was deleted
(was: I spoke too soon. This resolved the issue with the images, but when I
print to a printer, the A4 pages are not shrinking. I did create a class that
essentially is PDFPageable but takes a scaling property (shrink to fit) when
creating the PDFPrinter object. However, the A4 pages still print on the Letter
size paper. Any suggestions? Should I instead post this on SO?)
> Printing a PDF with transparent images causes nothing to print for that page
> ----------------------------------------------------------------------------
>
> Key: PDFBOX-3776
> URL: https://issues.apache.org/jira/browse/PDFBOX-3776
> Project: PDFBox
> Issue Type: Bug
> Components: Rendering
> Affects Versions: 2.0.5
> Reporter: Jon Ominsky
> Labels: printing
> Attachments: Java Printing Test.pdf, Mytest.pdf,
> PDFBOX-3776-reduced.pdf
>
>
> I have a PDF with 2 images in it on 2 separate pages. Each page also has some
> text. When I try to print the PDF, the first page renders fine, but nothing
> renders for the second page and I get a blank page printed.
> {code}
> String sourcePDF = "C:\\temp\\CPTest\\MyTest.pdf";
> PrinterJob job = PrinterJob.getPrinterJob();
> try (PDDocument document = PDDocument.load(new File(sourcePDF))) {
> job.setPageable(new PDFPageable(document);
> PrintService service = getPrintService("Adobe PDF");
> job.setPrintService(service);
> job.print();
> } catch (IOException | PrinterException e) {
> throw new RuntimeException("Unable to print file " + sourcePDF + ".",
> e);
> }
> {code}
> I have also tried printing to a physical printer with the same results. Saves
> me paper by just using the Adobe PDF printer.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]