imageCapture

書式

documentObject.imageCapture(Fileオブジェクト, [横幅, 縦幅], オプション)

説明

アクティブドキュメントのアクティブになっているアートボードをキャプチャーし保存します。最初のパラメーターにはキャプチャーした画像を保存する場所を示すFileオブジェクトを指定します。保存される画像形式はPNGです。2番目のパラメーターは配列形式で横幅と縦幅を指定します。単位はピクセルになります。3番目のパラメーターにはImageCaptureOptionsオブジェクトを指定します。
このメソッドに戻り値はありません。
var rgb = new RGBColor();
rgb.red=128;
rgb.green=64;
rgb.blue=192;
var opt = new ImageCaptureOptions();
opt.antiAliasing = true;
opt.matte = true;
opt.resolution = 72;
opt.transparency = false;
opt.matteColor = rgb;
var fileObj=new File("~/Desktop/myImage.png");
if(fileObj){
    var rect = [0, 0, 800, 600];	// left, top, right, bottom
    app.activeDocument.imageCapture(fileObj, rect, opt);
}

目次に戻る