How to find tiff files which have transparency???
How to find tiff files which have transparency???
I need to find and move all tiff files in folder which have any kind of transparency. Do I can do this with IM?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: How to find tiff files which have transparency???
Code: Select all
convert in.tif -format %[opaque] info:
A script can loop through files, and do whatever you want with images that have transparency.
snibgo's IM pages: im.snibgo.com
Re: How to find tiff files which have transparency???
do you want to help me further? how to move all tifs with transparency or layers into some subfolder?