Convert TIFF to JPG on Mac: 3 Methods
Convert TIFF to JPG on Mac with GetCompress, Preview, or sips. Shrink scans and print exports for email and web upload.
A print shop returns TIFF proofs. A scanner saves archival TIFF at 600 dpi. Email and CMS want JPEG. Convert a copy for delivery and keep the TIFF master untouched. Cap long edge before share so a 40 MB scan does not become a still-huge JPEG at full resolution.
TIFF vs JPEG
| Format | Typical use |
|---|---|
| TIFF | Print, scan archive, lossless intermediate |
| JPEG | Web, email, CMS, client review |
| Source TIFF | Export approach |
|---|---|
| Flat scan, no alpha | Convert and quality ~85 |
| Multi-page TIFF | Export pages from Preview sidebar or scan app |
| Huge dpi | Resize before JPEG |
See PNG to JPG on Mac for similar lossy rules. For PDF page exports, see PDF to JPG on Mac .
Method 1: GetCompress
Best for: One scan or folders with recurring portal widths, and convert-plus-resize in one pass.

- Drop one TIFF or a folder into GetCompress .
- Choose JPEG output.
- Set max width (for example 2400 px for listing photos, 1920 px for screen review) and quality (for example High or Medium).
- Preview a text-heavy scan at 100% zoom, then export to
deliverables/jpeg/. - Save a preset for the next insurance or HR packet.
Processing stays on your Mac. Keep TIFF masters on archive storage.
Method 2: Convert in Preview
Best for: One or a few TIFF files.
- Open the TIFF in Preview.
- File → Export… → JPEG, set Quality.
- Save with a new filename.
Multi-page TIFF: use the thumbnail sidebar, export each page, or merge to PDF first if the workflow needs one document.
| Quality | Use when |
|---|---|
| 85 to 90 | Client proofs |
| 80 | Web gallery |
| 70 | Thumbnails only |
Limitation: Slow for dozens of scans. No shared preset across a folder.
Method 3: Batch with sips or FFmpeg
Best for: Terminal loops when you already work in shell.
mkdir jpg-out
for f in *.tif *.tiff; do
sips -Z 2400 -s format jpeg -s formatOptions 85 "$f" --out "jpg-out/${f%.*}.jpg"
doneFFmpeg alternative:
ffmpeg -i scan.tiff -vf scale=2400:-2 -q:v 3 scan.jpgLimitation: You maintain the commands. Spot-check signatures and fine text at 100% zoom before batch send.
Scans and print exports
| Issue | Fix |
|---|---|
| JPEG still huge | Lower dpi via resize first |
| Color shift | Export sRGB JPEG |
| Multi-page scan | Preview sidebar or scan app per page |
Never overwrite the TIFF master. Write JPEG to a separate folder so you can re-export if a client requests higher resolution. When the JPEG folder still blocks upload, see how to compress images on Mac .
When Preview is enough
Preview can finish a single proof when width and quality already match the destination.
GetCompress also helps when dozens of scans need the same width and quality locally. It does not replace scan software for deskew or page split. Keep masters archived and only share the delivery copies.
- Convert PNG to JPG on MacConvert PNG to JPG on Mac with GetCompress, Preview, or sips. Keep PNG when you need transparency; flatten first when you do not.
- How to Compress Images on MacCompress images on Mac with GetCompress, Preview, or sips. Resize JPG and PNG, convert HEIC, and keep sharp UI for email or web.
- Convert PDF to JPG on MacExport PDF pages as JPEG on Mac with Preview, pdftoppm, or a GetCompress resize pass. Batch slide decks for CMS and email.
- Convert TIFF to JPG on WindowsConvert TIFF to JPG on Windows with GetCompress, Photos or Paint, or FFmpeg. Shrink scans for email, SharePoint, and web upload.