I'm using Control Scripts for combining many pdf files on the same page.
I've written a script like this:
define pdf_page_setup(pagenum) {
if(pagenum == 1) {
setupPage(...,....,0.0,1.0,1.0,0);
setMediaBox(int(...),int(...)); }
if(pagenum == 2) {
setupPage(...,....,0.0,1.0,1.0,1); }
if(pagenum == 3) {
setupPage(...,...,0.0,1.0,1.0,1); }
if(pagenum == 4) {
.....
}
For each file, Pstill do a preprocessing phase ("...is preparated for trancoding...") that is very time-consuming.
Since I often repeat the same file may times (like a step & repeat application), how can I speed up PStill ? Is it possible to let PStill preprocess each file once and repeat it many times ? Does anybody have any suggestion for my script or for command line arguments ?
Thank you very much for your help,
Marco (
caciotti@cromografica.biz)