multiple psd[2] to png conversion
Posted: 2010-03-04T10:32:37-07:00
Hi;
I trie to extract the layer 2 from 750 images folder and convert it to png format.
I suceed to convert psds to png with all layers, but not just my image layer…
Here's my script:
#!/bin/sh
for i in *.psd\[2\]; do convert "${i}" "${i%%.*}.png"; done
What is my mistake ?
Thank you !
Ad.
I trie to extract the layer 2 from 750 images folder and convert it to png format.
I suceed to convert psds to png with all layers, but not just my image layer…
Here's my script:
#!/bin/sh
for i in *.psd\[2\]; do convert "${i}" "${i%%.*}.png"; done
What is my mistake ?
Thank you !
Ad.