Mobile app version of vmapp.org
Login or Join
Alves566

: What is the easiest way to reduce the file size of a TIFF without losing too much of the image's quality? I have a few high res TIFF files I'd like to reduce in size as they are currently

@Alves566

Posted in: #FileFormat #FileSize #Jpg #Tiff

I have a few high res TIFF files I'd like to reduce in size as they are currently around 20 MB, but need to get them down to no more than 10 MB so I can upload them to a website. Is there a way I can do this without converting them into JPEG files to avoid losing too much quality?

The dimensions of the pictures I'm looking at are around 3540 by 2720 pixels.
DPI is 300.

Thanks :)

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Alves566

2 Comments

Sorted by latest first Latest Oldest Best

 

@Samaraweera207

If you have uncompressed TIFFs and work on a Mac, you can batch compress them in Terminal with tiffcp -c lzw "INPUT_FILE" "OUTPUT_FILE"

I just did this, to compress a big folder of tiffs, with additional commands to preserve the original modification time on the files:

for f in *.tif *.tiff; do out="$f.lzw.tiff"; if tiffcp -c lzw "$f" "$out"; then touch -r "$f" "$out" && mv "$out" "$f"; else echo "ERROR with $f"; fi; done


Or a more readable multi-line version:

for f in *.tif *.tiff; do
out="$f.lzw.tiff";
if tiffcp -c lzw "$f" "$out"; then
touch -r "$f" "$out" && mv "$out" "$f";
else
echo "ERROR with $f";
fi;
done


(tiffcp comes with the libtiff homebrew package. So you need to have homebrew installed, but if you are lazy enough you probably already have it)

10% popularity Vote Up Vote Down


 

@Jessie844

I would resave the TIFF file with LZW compression turned on. That should get the size down considerably.



Edit:

If you are using Photoshop, you would simply "Save As", choose .TIF as your format and location.

After that you should get a dialog box (see below) with compression options.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme