I know how to open a webpage in a new window and add javascript so the print dialog pops up. Is there a way to do a similar thing with a PDF file?
|
Yes you can... PDFs have Javascript support. I needed to have auto print capabilities when a PHP-generated PDF was created and I was able to use FPDF to get it to work: |
|||||
|
|
I usually do something similar to the approach given by How to Use JavaScript to Print a PDF (eHow.com), using an
Bonus Idea #1 - Create the Bonus Idea #2 - Extra credit if you disable your "Print" button and give the user a little loading spinner or something after they click it, so that they know something's in process instead of clicking it repeatedly! |
|||||||
|
|
Just figured out how to do this within the PDF itself - if you have acrobat pro, go to your pages tab, right click on the thumbnail for the first page, and click page properties. Click on the actions tab at the top of the window and under select trigger choose page open. Under select action choose "run a javascript". Then in the javascript window, type this:
This will print your document without a dialogue to the default printer on your machine. If you want the print dialog, just change bUI to true, bSilent to false, and optionally, remove the shrink to fit parameter. Auto-printing PDF! |
|||||
|
|
I use My web application creates a postscript file that then is converted with ghostscript to a pdf. I want it to print automatically because the user has already clicked on print inside my application. With the information about named actions from @DSimon above, I researched how to solve this. It all boils down to insert the string I was thinking of writing a small utility, but it has to parse the pdf to find the root node, insert But then I found out about pdfmark which is an extension to postscript to express, in postscript syntax, idioms that are converted to pdf by Adobes distiller or by ghostscript. Since I'm already using ghostscript, all I have to do is append the following to the end of my postscript file:
and ghostscript will create the action, link it, and calculate the xref offsets. (In postscript By looking at the PDF I see that it has created this:
With ghostscript it's possible to convert a pdf to postscript (pdf2ps), append the text above, and convert it back to pdf with |
|||
|
|
|
Embed code example:
May have to fool around with the ids/names. Using adobe reader... |
||||
|
|
|
If you know how PDF files are structured (or are willing to spend a little while reading the spec), you can do it this way. Use the Named Action "Print" in the OpenAction field of the Catalog object; the "Print" action is undocumented, but Acrobat Reader and most of the other major readers understand it. A nice benefit of this approach is that you don't get any JavaScript warnings. See here for details: http://www.gnostice.com/nl_article.asp?id=157 To make it even shinier, I added a second Action, URI, directing the reader to go back to the page that originated the request. Then I attached this Action to the first Named action using its Next field. With content disposition set to "inline", this makes it so that when the user clicks on the print link:
I was able to do all these changes in Ruby easily enough using only the File and IO modules; I opened the PDF I had generated with an external tool, followed the xref to the existing Catalog section, then appended a new section onto the PDF with an updated Catalog object containing my special OpenAction line, and also the new Action objects. Because of PDF's incremental revision features, you don't have to make any changes to the existing data to do this, just append an additional section to the end. |
||||
|
|
Why not use the Actions menu option to set this? Do the following: If you have Acrobat Pro, go to your pages tab, right click on the thumbnail for the first page, and click page properties. Click on the actions tab at the top of the window and under select trigger choose page open. Under select action choose 'Execute a menu item'. Click the Add button then select 'File > Print' then OK. Click OK again and save the PDF. |
||||
|
|
|
If you are using the prawn gem for Ruby on Rails to generate your PDF, you can use the following additional gem to active the print dialog: |
|||
|
|
|
if you embed the pdf in your webpage and reference the object id, you should be able to do it. eg. in your HTML:
in your javascript:
I hope that helps. |
|||||
|