You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Jon Ominsky (JIRA)" <ji...@apache.org> on 2017/05/04 16:51:04 UTC

[jira] [Issue Comment Deleted] (PDFBOX-3776) Printing a PDF with transparent images causes nothing to print for that page

     [ 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: So...that resolved the issue. However, I was using this PDF as something to reproduce the real issue I have with a document from a client that I'm not sure I can share. I will ask the client if I can share a single page of that document that illustrates the issue and will attach it.)

> 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: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org