Search found 1 match

by foad
2010-03-04T10:32:37-07:00
Forum: Users
Topic: multiple psd[2] to png conversion
Replies: 1
Views: 4075

multiple psd[2] to png conversion

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.