% SLang Script to control PDF generation, 'hard' rotate 180 deg % 'Hard' means that the content is rotated, not just a /Rotate flag set % more S-Lang info can be found at http://www.s-lang.org % Used Call: setupPage ( float translate_x, float translate_y, float rotate, float scale_x, float scale_y, int keepOnSamePage ) define pdf_page_setup(pagenum) { setupPage(pageWidth(),pageHeight(),180.0,1.0,1.0,0); setMediaBox(int(pageWidth()),int(pageHeight())); }