For future readers of this post, if a commercial library is a valid choice then it is possible to do this with Amyuni PDF Creator ActiveX (Delphi, C++, VB, PHP) or with Amyuni PDF Creator .Net (C#, VB.net, etc.) by changing the "PaperBin" property of a page object.
The code in C# would look like this:
Amyuni.PDFCreator.IacDocument pdfDoc = new Amyuni.PDFCreator.IacDocument()
using(FileStream fs = File.Open("MyDocument.pdf", FileMode.Open))
{
pdfDoc.Open(fs, "")
}
For( int pageNumber = 1; i <= pdfDoc.PageCount; i++)
{
pdfDoc.GetPage(pageNumber).AttributeByName("PaperBin").Value = 3
}
pdfDoc.Print("My Laser Printer", False)
For PHP, you will need to use the ActiveX version, and create the document using the ProgID of the ActiveX control:
$pdfdoc = new COM("PDFCreactiveX.PDFCreactiveX");
Disclaimer: I currently work for Amyuni Technologies.