Flip page horizontal (mirrored page) with AlivePDF

439 Views Asked by At

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();
1

There are 1 best solutions below

2
On

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:

gs \
    -o mirrored.pdf \
    -sDEVICE=pdfwrite \
    -c "<</Install {-1 1 scale -612 0 translate}>> setpagedevice" \
    -f un-mirrored.pdf