|
Hi,
I want to save document using Photoshop scripting in JP2 format using your LEAD JPEG 2000 plug-in.
I have tried a lot but, I did not get solution.
Following is the code for how I am saving document in JPEG. I want to modify this code for JP2:
saveFile = new File(PATH);
saveOptions =new JPEGsaveOptions();
saveOptions.embedColorProfile = true;
saveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
saveOptions.matte = MatteType.NONE;
saveOptions.quality = 12;
saveOptions.scans = 3;
activeDocument.saveAs(saveFile, saveOptions, true, Extension.LOWERCASE);
For JP2 format I have to modify saveOptions
Please suggest.
Thanks and Regards,
Nakul Sanyashi
affinityEXPRESS
|