■ソースコード
fileObj = new File("~/test.psd");
psdOpt = new PhotoshopSaveOptions();
psdOpt.alphaChannels = true;
psdOpt.annotations = true;
psdOpt.embedColorProfile = false;
psdOpt.layers = true;
psdOpt.spotColors = false;
activeDocument.saveAs(fileObj, psdOpt, true, Extension.LOWERCASE);
■ポイント
Photoshop形式保存オプションには以下のプロパティがあります。
alphaChannels αチャンネルを保存(true:保存する、false:保存しない)
annotations 注釈(true:あり、false:なし)
embedColorProfile カラープロファイル(true:埋め込む、false:埋め込まない)
layers レイヤーを保存(true:する、false:しない)
spotColors スポットカラー(true:保存する、false:保存しない)