#概要
vistaでillustratorやってみる。
アートボード作って、jpg読んで、png出力してみた。
#写真
#サンプルコード
var docRef = documents.add(DocumentColorSpace.RGB, 800, 800);
var jpgFilePath = "/Users/ore/eki.jpg"
var rasterFile = File(jpgFilePath);
var myPlacedItem = docRef.placedItems.add();
myPlacedItem.file = rasterFile;
myPlacedItem.position = Array(0, docRef.height);
myPlacedItem.embed();
var pngOpt = new ExportOptionsPNG24();
pngOpt.artBoardClipping = true;
var filePath = new File("/Users/ore/ill6.png");
activeDocument.exportFile(filePath, ExportType.PNG24, pngOpt);
alert("ok");
以上。