Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Printing HUGE PDF batches in order

Sorry if this is a little off-topic for regular stackoverflow questions, but we're tearing our hair out on this one. We've got a batch of about 3500 3-page PDFs to print (all ok so far) the problem we've got is that it's vital they print in a specific order (ascending by filename). Our spooler seems to randomize the printrun. Any ideas on a way to either solve this the old fashioned way or point me in the right direction to fix this programatically?

TIA

like image 839
Shift8 Avatar asked Dec 15 '08 10:12

Shift8


People also ask

How do I print more than 15 PDF files at once?

4. Right-click any selected PDF file and click "Print" to automatically print all of the selected files. If you need to print more than 15 PDFs, repeat the procedure and select the unprinted PDFs.

Why is my PDF printing huge?

Choose File > Print. From the Page Scaling pop-up menu, select one of the following options: Fit To Printable Area Scales small pages up and large pages down to fit the paper. Shrink To Printable Area Resizes only large pages to fit the paper and prints small pages as they are.


3 Answers

Thanks all, I some advice over a techrepublic with regards to a printer setting called 'Print spooled documents first' unticking the box seems to have honoured the order the files were sent.

like image 66
Shift8 Avatar answered Nov 08 '22 21:11

Shift8


With iText (java) or iTextSharp (.net) you can put them all together in the order you want.

I would first take a look at the print spooler, though.

like image 35
Stephan Eggermont Avatar answered Nov 08 '22 21:11

Stephan Eggermont


You should be able to use a PDF library and some simple-ish scripting to turn them into one unholy document. One PDF to rule them all, one PDF to find them, one PDF to bring them all, and in the darkness bind them... so to speak.

Edit: As an easier option, you can get software that will do your evil bidding for you. The simplest/cheapest method I've seen so far is through PDFSam. And if you give the developer a Euro (or more, your prerogative) you get a better version. Not sure what's in it apart from encryption though.

like image 1
Oli Avatar answered Nov 08 '22 23:11

Oli