Page 1 of 1

Reduce file size of a tiff-image

Posted: 2012-07-02T12:06:10-07:00
by micommo
Hi,
I´m looking for a way to create lay files from tiff images. For jpgs there is the convert -quality way which doesn´t work for tiffs. The only option I found so far is convert -strip -density 72 which removes around 10k from a 5 Mb file. Is there any other way?

Best regards,

Mike

Re: Reduce file size of a tiff-image

Posted: 2012-07-02T12:54:49-07:00
by fmw42
convert from 24-bit color to 8bit color by adding -type palette before saving to either tiff or png or gif

Re: Reduce file size of a tiff-image

Posted: 2012-07-06T03:20:51-07:00
by micommo
Thanks for the tip. Testing it with 'convert -type palette org.tif new.tif' the file size is reduzed by around 20%. I´m looking for a way to reduze to 20% or around that. Any additional options I may try?

Regards,

Mike

Re: Reduce file size of a tiff-image

Posted: 2012-07-06T09:40:01-07:00
by fmw42
Proper IM 6 syntax is

convert org.tif -type palette new.tif

try

convert org.tif -strip -type palette new.tif

to remove any meta data. Some profiles are very big.