I wrote a script that performs some adjustments, saves then closes the image:
preferences.rulerUnits = Units.PIXELS;
imageWidth = activeDocument.width.as('px');
imageHeight = activeDocument.height.as('px')-30;
activeDocument.resizeCanvas(imageWidth,imageHeight,AnchorPosition.TOPCENTER);
app.activeDocument.save();
app.activeDocument.close();
Is there a way I can get this to run on a whole folder of images?
Thanks
You can try something like this:
I did not try, but it should work.
Hope it helps.