up vote 7 down vote favorite
5
share [g+] share [fb]

We are looking into silent printing of PDF documents from within Java. The printing will be invoked from the desktop and not through a browser so we cannot use JavaScript. PDF Renderer is an operational solution but their rendering quality is not acceptable. iText does not seem to be pluggable with the Java print service. There are some commercial Java libraries, jPDFPrint by Qoppa, JPedal, and ICEpdf which we have not tried out yet.

Does anybody have any experience with PDF silent printing from Java?

link|improve this question

What's your problem with Sun's PDFRender? I have some print outs here and they look clean and nice. Do you have special elements or images that cause problems? – Stroboskop Jun 14 '10 at 7:30
feedback

9 Answers

up vote 5 down vote accepted

Apache PDFBox. It is currently in incubation, but the PDF printing functionality has been around before that. Internally, it uses the Java Print Services to create a print job, and it also supports silent printing.

Do note that it requires Fontbox as well, and the current (upcoming 0.8.0 release) has included graceful fallback for documents with Type 0 fonts. Type 1 fonts are printed correctly; however in 0.7.3, attempts to print documents with Type 0 fonts will result in an exception being thrown.

link|improve this answer
1  
I tried this, but the pdf's printed at least mainly blank (sometimes completely blank pages, sometimes just a section). – Stephen Nov 9 '09 at 9:03
Well, the command line (PrintPDF) seems to work and print everything (even if it makes a mess of my transparent PNG image) – Stephen Nov 9 '09 at 9:32
That's a bit strange, considering that command line printing seems to have worked (except for the PNG image). I'll check how PNGs are represented in the PDFBox model. By the way, are you trying this with 0.7.3 or a later release? – Vineet Reynolds Nov 9 '09 at 9:58
It was a few older generated pdf's in particular... perhaps it was due to using a prior version of flying saucer to generate the pdf. Newly generated pdf's are fine. BTW +1 - it's working now... – Stephen Nov 10 '09 at 8:07
Version 0.8.0. As for +1, I would vote, but apparently I already have, and too long ago too :(. I hope it was already an up vote. – Stephen Nov 10 '09 at 8:09
feedback

Maybe I'm misunderstanding, but why not just use the Print Service API directly? The following works for me (assumes you have the PDF document as a byte array):

DocFlavor flavor = DocFlavor.BYTE_ARRAY.PDF;
PrintService[] services = PrintServiceLookup.lookupPrintServices(flavor, null);
if (services.length > 0)
{
    DocPrintJob printJob = services[0].createPrintJob();
    Doc document = new SimpleDoc(pdfBytes, flavor, null)
    printJob.print(document, null);
}
else
{
    System.out.println("No PDF printer available.");
}
link|improve this answer
3  
this only works if your printer natively supports PDF - few do – Kevin Day Sep 12 '09 at 4:17
All the ones I've tried under Linux seem to work. Under Windows I had to update the drivers. – Dan Dyer Sep 12 '09 at 10:29
I am trying this in Windows and in Linux. Here is the updated version but however i cant make it work, like how can i load the file in c:\print.pdf and push to silent print?. Any suggestion plz? e.g: gist.github.com/1093987 – YumYum Jul 19 '11 at 23:21
feedback

This looks promising.

link|improve this answer
The rendering quality of PDF Renderer is not acceptable. – Paul Reiners Sep 10 '09 at 20:24
feedback

Have a look at www.pdflib.com. Its comercial but PDFlib Lite is available for free for open source projects. It has bindings for java.

link|improve this answer
feedback

Check Jasper Reports at http://jaspersoft.com/jasperreports

link|improve this answer
feedback

There is an example using JPedal at http://www.jpedal.org/support%5FegSP.php

You will need the commercial version of IcePdf if you want full font support.

link|improve this answer
feedback

I have experience with making Acrobat (Reader or Full) do the printing, but it's anything but silent (it is unattended, though - just depends on how 'silent' the silent requirement is). If there's interest, I can shoot you the native code that makes the required DDE calls.

link|improve this answer
Could you please show the code? – asalamon74 Nov 13 '09 at 8:28
There is a command line switch to trigger a print operation from Acrobat reader but the reader stays open... One solution is to use an external utility, see rgagnon.com/javadetails/java-print-a-pdf.html . Obviously, this is for WIndows only! – RealHowTo Dec 31 '11 at 18:06
and that command line switch has never worked for me (in modern versions of Acrobat and/or Reader - it did work in older versions)... – Kevin Day Jan 9 at 19:41
feedback

iText is intended for creating PDF files (per a post I saw from the author), and thus probably isn't what you want.

I've used Qoppa's jPDFPrint quite successfully for exactly this purpose, but it's not cheap. If you can afford it, it's the most robust solution I've found thus far. I've also been very impressed with the level of support; they even generated some custom sample code for me.

I tried PDFBox, but found that it doesn't support the "Shrink to printable area" page scaling that you get with Acrobat. Not everyone will care about this feature, but it's essential for me.

link|improve this answer
feedback

Come to this late, but there's an article on how to silently print with BFO's PDF Viewer: http://bfo.com/blog/2009/09/28/silently_print_a_pdf_from_a_web_browser.html

link|improve this answer
1  
Can you post a summary here? We try to discourage link-only answers. – Bill the Lizard Nov 30 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.