Scale up file when saving to PDF?
We save a PDF of our product layout files at actual size. Since it's jewelry this can be quite small. Our systems developer plans to use the files for preview on web, but cannot figure out how to scale them up. Can I do that for him during the save process? Was hoping it would just be a "Save at 200%" option, similar to printing, but haven't found it yet.
This is the script we currently use for saving the PDF:
// save as
var doc = app.activeDocument;
var myLayer = doc.layers["FINGERPRINT"].locked = false;;
if (doc.layers["FINGERPRINT"].pageItems[0].locked = true){
doc.layers["FINGERPRINT"].pageItems[0].locked = false;
}
try {
doc.layers["Base"].locked = false;
doc.pageItems["MasterPrints"].remove();
doc.layers["Base"].locked = true;
}
catch (e){}
var dest = "%Variable%DND_SaveLocal%/%Variable%pdfFileName%";
saveFileToPDF(dest);
function saveFileToPDF (dest) {
//var doc = app.activeDocument;
if ( app.documents.length > 0 ) {
var saveName = new File ( dest );
saveOpts = new PDFSaveOptions();
saveOpts.pDFPreset = "[Illustrator Default]";
saveOpts.acrobatLayers = false;
//~ alert(saveName);
doc.saveAs( saveName, saveOpts );
}
}