Page 1 of 1

Can I Batch remove transparency on TIF files?

Posted: 2017-01-13T11:19:33-07:00
by omegads
Good day, i just discovered this applications so i do not know nothing... just for information :3

can this program do a batch convert, the issue is that i have around 300 pictures for a catalog and i was asked to remove the transparency because the catalog was autoconverting the transparency to black...

If it does, could you please tell me how could i do it..

Regards

Re: Can I Batch remove transparency on TIF files?

Posted: 2017-01-13T11:37:52-07:00
by Bonzo
Probably; I would read this and post more info: https://www.imagemagick.org/discourse-s ... f=1&t=9620

Re: Can I Batch remove transparency on TIF files?

Posted: 2017-01-13T12:40:29-07:00
by fmw42
If all your images are in one folder, then you can use mogrify to flatten all the images in a folder against some common background color. See http://www.imagemagick.org/Usage/basics/#mogrify

For one image, try

Code: Select all

convert image -background somecolor -flatten result
If that works, then use mogrify, but be sure to save a backup or write the output to a new directory.

What image format are the input images? If PSD or TIF, you may need some defines if these files have adjustment or group layers. See http://www.imagemagick.org/script/comma ... php#define

Please always provide your IM version and platform since syntax may differ. Also an example image would help. All this information is needed and that is why bonzo sent you to that link to see how to ask questions on this form.