Question
Save .jpg without metadata.
Is there a way to save the opened file as .jpg without all the metadata (camera info, date taken, etc.)? I currently use the code below, but there seems to be no option to suppress the unnecessary data from the output file.
var jpgOpts = new JPEGSaveOptions();
jpgOpts.quality = 9;
jpgOpts.embedColorProfile = false;
jpgOpts.matte = MatteType.NONE;
jpgOpts.formatOptions = FormatOptions.STANDARDBASELINE;
