Hello
I'm using ImageMagick 6.6.1-6.
i have a psd file with many layers,when i convert the psd file to jpg, i want to close some layers first,such as image[0],image[2], who can help me?
thanks.
how to close a psd layer use imagemagick?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: how to close a psd layer use imagemagick?
see http://www.imagemagick.org/Usage/basics/#sequence
do you mean remove those pages or keep those pages? You need to specify which pages your want.
convert image.pdf[3-5,7] result.pdf
will keep frames 3,4,5,7 (note frames start at 0)
do you mean remove those pages or keep those pages? You need to specify which pages your want.
convert image.pdf[3-5,7] result.pdf
will keep frames 3,4,5,7 (note frames start at 0)
Re: how to close a psd layer use imagemagick?
thanks,i will try it.fmw42 wrote:see http://www.imagemagick.org/Usage/basics/#sequence
do you mean remove those pages or keep those pages? You need to specify which pages your want.
convert image.pdf[3-5,7] result.pdf
will keep frames 3,4,5,7 (note frames start at 0)
Re: how to close a psd layer use imagemagick?
when i use this commond "convert aaa.psd -delete 3,4 daaa.jpg" to convert the psd file to jpg,i find that only the layer 0 is a right image of the result layers images
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: how to close a psd layer use imagemagick?
jpg does not support layers, so you have to save them as separate file. PDS layer 0 is the layer that has all the other layers flattened into it.