LoginSignup
2
3

More than 5 years have passed since last update.

gmを使ってPSDからサムネイルを作成する

Posted at

gmを使ってPSDのサムネイルを作成する。

var gm = require('gm').subClass({ imageMagick: true });
gm("img.psd[0]").resize(128, 128).setFormat("png").write('./out.png', function(){ console.log("done"); });

img.psd[0]とすると、各レイヤーが合成されたものが出力される。
[0]を付けないと、各レイヤーそれぞれのサムネイルが出力される。

参考文献

2
3
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
2
3