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
Reduce file size of a tiff-image
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Reduce file size of a tiff-image
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
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
Regards,
Mike
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Reduce file size of a tiff-image
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.
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.