0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vistaでphotoshop

Last updated at Posted at 2022-01-27

概要

vistaでphotoshopやってみる。
キャンバス作って、文字書いて、pngで保存する。

写真

test.png

環境

windows vista
photoshop cs2

サンプルコード

//alert(app);
//alert(app.version);
preferences.rulerUnits = Units.PIXELS;
var doc = documents.add(300, 300);
var layers = doc.artLayers;
var layer1 = layers.add();
layer1.kind = LayerKind.TEXT;
layer1.textItem.contents = "hello photoshop!";
layer1.textItem.size = 30;
layer1.textItem.font = "TelopMinPro-E";
layer1.textItem.justification = Justification.LEFT;
layer1.textItem.color.rgb.red = 255;
layer1.textItem.color.rgb.green = 0;
layer1.textItem.color.rgb.blue = 0;
layer1.textItem.horizontalScale = 90;
layer1.textItem.position = Array(50, 50);
//alert(app.activeDocument);
var pngOpt = new ExportOptionsSaveForWeb();
pngOpt.format = SaveDocumentType.PNG;
pngOpt.optimized = true;
pngOpt.interlaced = false;
pngOpt.PNG8 = false;
var filePath = new File("/Users/ore/test.png");
app.activeDocument.exportDocument(filePath, ExportType.SAVEFORWEB, pngOpt);
//alert(app.activeDocument.path);
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?