いくつかの調整を実行し、画像を保存して閉じるスクリプトを作成しました。
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();
これを画像のフォルダー全体で実行する方法はありますか?
ありがとう