How to create a layered PSD file from command line?

后端 未结 6 860
轻奢々
轻奢々 2020-12-04 16:06

I need to create a layered PSD file with ImageMagick or any other command-line tool available on Linux platform. Since I need to do this on Linux server, I

6条回答
  •  执笔经年
    2020-12-04 16:24

    You can create a layered PSD with ImageMagick, but note the first image is actually used as the preview image (i.e. composite of all the layers).

    convert -size 100x100 plasma:fractal plasma:fractal plasma:fractal out.psd
    

    Will create a 2 layered PSD.

提交回复
热议问题