0
0

More than 1 year has passed since last update.

vistaでphotoshop その5

Posted at

概要

vistaでphotoshopやってみる。
jpg読んで、pngで出力やってみる。

写真

test4.png

サンプルコード


var fileObj = new File("/Users/ore/eki.jpg");
open(fileObj);
//alert(activeDocument);
var pngOpt = new ExportOptionsSaveForWeb();
pngOpt.format = SaveDocumentType.PNG;
pngOpt.optimized = true;
pngOpt.interlaced = false;
pngOpt.PNG8 = false;
var filePath = new File("/Users/ore/test4.png");
app.activeDocument.exportDocument(filePath, ExportType.SAVEFORWEB, pngOpt);
alert("ok");



以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0