photoshop scripting save file jpeg code example
Example: photoshop scripting create a folder and save file.jpg
function savefile(tempDimensions,path){
var splitvalue = path.split("dist");
path = splitvalue[0]+"src/template_1/Save_File/"
var f = new Folder(path);
if(!f.exists)
{
f.create();
$.writeln("create on ");
$.writeln(path);
}
else{
$.writeln(path);
}
var savePath = path+ tempDimensions + ".jpg";
var saveFile = new File(savePath);
var saveOptions = new JPEGSaveOptions();
saveOptions.alphaChannels = false;
saveOptions.annotations = false;
saveOptions.embedColorProfile = true;
saveOptions.layers = true;
saveOptions.spotColors = false;
app.activeDocument.saveAs(saveFile, saveOptions, true, Extension.LOWERCASE);
}