Hey all,
I am trying to automate the export of multiple files including a PDF without bleed. My PDF options so far are as follows, but continues to include bleed 😞
var pdfDoc = new File(dest);
pdfSaveOpts = new PDFSaveOptions();
pdfSaveOpts.compatibility = PDFCompatibility.ACROBAT5;
pdfSaveOpts.generateThumbnails = true;
pdfSaveOpts.preserveEditability = true;
pdfSaveOpts.bleedLink = false;
pdfSaveOpts.bleedOffsetRect = [0,0,0,0];
pdfSaveOpts.trimMarks = false;
doc.saveAs(pdfDoc, pdfSaveOpts);
Any help hugely appreciated.