I am creating a PDF using AlivePDF in FlashCS5. Everything is workin' fine, but I want to "reflect" the texts or the whole page for print it mirrored without edit the image. Hope some one knows how to. Cheers!
myPDF.setFont( regularFont, 160);
myPDF.addText(nombre, 180, 50);
myPDF.setFont( regularFont, 125);
myPDF.addText(tiempo, 20, 50);
var f:FileStream = new FileStream();
file = File.desktopDirectory.resolvePath("pdf/"+date+"_"+client+".pdf");
f.open( file, FileMode.WRITE);
var bytes:ByteArray = myPDF.save(Method.LOCAL);
f.writeBytes(bytes);
f.close();
You can achieve this for any PDF by feeding your un-mirrored PDF plus a little bit of custom PostScript code to Ghostscript. Assuming your page width is 612 pts ("Letter"), one possible command is this: