Question
Create PDF 2 time larger
After I write codes then I create PDF file , PDF file that is created almost 2 times larger than then PDF I created manually. You can find below details of PDF I created manually. How can I create the PDF like manually created size ? Thank you
var doc = app.activeDocument;
function pdfExport() {
if (app.documents.length > 0) {
var newName = doc.name.replace(/\.[a-zA-Z]{2,3}$/, ".pdf");
var newNameWithHyphens = newName.replace(/\s/g, "-");
var saveName = new File(doc.path + "/" + newNameWithHyphens);
var saveOpts = new PDFSaveOptions();
saveOpts.pDFPreset = "[PDF/X-4:2008]";
saveOpts.standard = "[PDF/X-4:2010]";
saveOpts.compartibility = "[Acrobat 7 (PDF 1.6)]";
doc.saveAs(saveName, saveOpts);
}
}
Features of manually made pdf





