Convert a TIFF to JPG on Mac
TIFF files are huge and not every app opens them. Here's how to convert a TIFF to JPG on macOS, natively or in bulk.
A photographer or scanning service sent you a folder of TIFFs and each one is 50+ MB. You need them as JPGs to email to a client, post on a site, or send anywhere that doesn’t accept the format. The conversion is straightforward — the question is how painfully you want to do it.
Why you’d convert
TIFF is lossless and large by design. A 6000-pixel-wide TIFF photo is often 30–80 MB. The same photo as JPEG at quality 85 is usually 1–3 MB and looks visually indistinguishable for most purposes. JPEG is also accepted everywhere; TIFF is rejected by a lot of upload forms.
The native way: Preview
For a single file, Preview works fine:
- Double-click the TIFF to open in Preview.
- File → Export.
- Pick JPEG from the Format dropdown.
- Set quality (the slider).
- Save.
Tedious for a folder of 50.
The native way: sips
For batches, sips is the answer:
sips -s format jpeg -s formatOptions 85 scan.tiff --out scan.jpg
Folder-wide:
mkdir jpg
for f in *.tif *.tiff *.TIF *.TIFF; do
sips -s format jpeg -s formatOptions 85 "$f" --out "jpg/${f%.*}.jpg"
done
Quality goes 0–100; 85 is the standard sweet spot. Drop to 75 for smaller files, push to 92+ for archival JPEGs.
The faster way
Drag the folder into Melt, set output to JPEG, set quality, click Compress. You can also resize at the same time — if your TIFFs are scans at 600 DPI and you just want web-sized JPEGs, knock the dimensions down in the same pass. Download Melt.
Bulk convert in Melt
- Open Melt.
- Drag the TIFF folder in.
- Set output format to JPEG.
- Pick quality — 85 for sharing, 92 for archive copies.
- Optionally resize to 2000–3000px on the long edge if dimensions are huge.
- Click Compress.
What you lose, what you keep
TIFF → JPEG is lossy and one-way: you cannot get the lossless data back from the JPEG. If your TIFFs are 16-bit, you drop to 8-bit. CMYK becomes RGB. Multi-page TIFFs become single-page JPEGs of the first frame. EXIF data is preserved by default; strip it via Melt if you’re publishing.
Keep the TIFF originals (external drive, archive folder) and treat the JPEGs as a working copy. Storage is cheap; re-scanning is not.
More Melt tips
-
Receive iPhone photos as JPG via AirDrop (not HEIC)
AirDropping photos from iPhone keeps landing them as HEIC files on your Mac. Here's how to get them as JPG instead.
-
AVIF on Mac — opening and converting AVIF images
AVIF is the next-gen image format that's even smaller than WebP. Here's how to open and convert AVIF files on macOS.
-
How to batch compress a folder of photos on Mac
Compressing 200 photos one at a time is its own form of suffering. Here's how to batch compress images on macOS.
-
What's the best image format for the web (and how to export it on Mac)?
JPEG, PNG, WebP, AVIF, SVG — they each have a job. Here's how to pick the right one for the web and export it from your Mac.