TIFF to JPG Converter: The Complete Guide for macOS Users

Everything you need to know about converting TIFF to JPG on macOS — from Preview and sips to batch conversion with Compresto, plus when to keep your TIFFs.

TIFF to JPG Converter: The Complete Guide for macOS Users

If you've ever tried to email a photo from a professional camera or send a scanned document, you've probably run into a tiff to jpg converter problem: the TIFF file is enormous, nothing will open it, and every upload form rejects it. TIFF is a brilliant archival format, but it's completely impractical for sharing, web publishing, or everyday storage. Converting to JPG solves all of that — if you do it correctly.

This guide covers every reliable method on macOS: the built-in Preview app, the command-line tools sips and ImageMagick, online converters, and dedicated apps like Compresto for batch conversion. It also explains when you should keep your TIFFs and never touch them.


TIFF vs JPG: What Actually Differs

Before reaching for a tiff to jpg converter, it helps to understand what you're trading away — and what you're gaining.

Compression model

TIFF files are almost always uncompressed or losslessly compressed. Every pixel is stored exactly as captured. A single raw scan from a flatbed scanner or a high-resolution photo from a medium-format camera can easily produce a 100–400 MB TIFF.

JPG (JPEG) uses lossy compression. The encoder discards pixel data it considers imperceptible — fine texture, subtle color gradients, high-frequency detail — and stores the result at a fraction of the original size. A 200 MB TIFF typically becomes a 5–20 MB JPG at high quality, and under 2 MB at standard web quality.

Color depth and channels

TIFF supports 8-bit, 16-bit, and 32-bit per channel color, as well as CMYK, Lab, and multi-channel modes used in professional print workflows. JPG is strictly 8-bit per channel, RGB or grayscale. Any 16-bit tone data — shadow detail, highlight headroom — is discarded when you convert to JPG.

Transparency

TIFF supports an alpha channel (transparency). JPG does not. If your TIFF has a transparent background, it will be replaced with a solid fill (usually white or black) during conversion. For transparent images, PNG is the better target format — see JPEG vs PNG: Which Image Format Should You Use? for the full comparison.

Metadata

TIFF files routinely carry full EXIF, IPTC, and XMP metadata, ICC color profiles, and embedded thumbnails. JPG preserves EXIF and ICC profiles, but some metadata can be stripped depending on the tool. If metadata accuracy matters (legal documents, licensed stock photos), verify retention after conversion.

When to keep TIFF

Convert everything to JPG? Not quite. There are situations where you should leave TIFFs alone:

  • Archival originals. Always keep a lossless master. Convert copies, not originals.
  • 16-bit editing workflows. If you'll continue editing in Photoshop or Affinity Photo, stay in 16-bit TIFF until final export.
  • Print production. Commercial printers often require TIFF or PDF in CMYK. Confirm format requirements before converting.
  • Medical and legal imaging. Standards like DICOM use TIFF-derivative formats specifically because lossless is mandatory.

Method 1: macOS Preview (Single File, No Install Required)

Preview is macOS's built-in image viewer and the fastest way to convert a single TIFF to JPG without installing anything.

  1. Open the TIFF file in Preview (double-click, or right-click → Open With → Preview).
  2. Go to File → Export.
  3. In the Format dropdown, select JPEG.
  4. Adjust the Quality slider. For general use, 75–85% gives excellent visual results at a reasonable file size. For web images, 60–75% is usually sufficient.
  5. Click Save.

Limitations: Preview converts one file at a time. There's no batch option in the GUI. If you have more than a handful of files, use one of the methods below.


Method 2: TIFF to JPG Converter via Command Line (sips)

sips (Scriptable Image Processing System) ships with every macOS installation. It's fast, scriptable, and handles batch conversion through shell loops.

Convert a single file

sips -s format jpeg input.tiff --out output.jpg

Set JPG quality

sips accepts a formatOptions flag for quality (0–100):

sips -s format jpeg -s formatOptions 85 input.tiff --out output.jpg

Batch convert an entire folder

mkdir -p converted
for f in *.tiff *.tif; do
  sips -s format jpeg -s formatOptions 85 "$f" --out "converted/${f%.*}.jpg"
done

This loop processes every .tiff and .tif file in the current directory, saves JPGs into a converted/ subfolder, and preserves the original filenames. Run it from Terminal inside the folder containing your TIFFs.

Strengths: Zero dependencies, very fast, great for scripting into automated workflows. Limitations: No progress UI, limited format manipulation options compared to ImageMagick.


Method 3: ImageMagick TIFF to JPG Converter

ImageMagick is the most powerful open-source image processing library available on macOS. Install it via Homebrew if you haven't already:

brew install imagemagick

Convert a single file

convert input.tiff -quality 85 output.jpg

Batch convert with quality control

mogrify -format jpg -quality 85 -path ./converted *.tiff

mogrify processes files in-place by default; the -path flag redirects output to a different directory, protecting originals.

Resize during conversion

A common workflow is to downscale large TIFFs while converting:

convert input.tiff -resize 2000x2000\> -quality 85 output.jpg

The \> modifier means "only resize if larger than 2000×2000" — it won't upscale smaller images.

Strip metadata to reduce file size

convert input.tiff -strip -quality 85 output.jpg

-strip removes EXIF, ICC profiles, and comments. Useful for web images where metadata is irrelevant and every kilobyte counts. Read more about reducing images for the web in How to Compress Images for Web.


Method 4: Online TIFF to JPG Converter Tools

Online converters are convenient for occasional one-off conversions when you're on a machine without installed tools. Common options include Convertio, CloudConvert, ILoveIMG, and Squoosh.

When online tools make sense:

  • Converting a single file on a machine you don't control
  • Quick check of how a converted file will look
  • No command-line access

When to avoid them:

  • Confidential, proprietary, or client images — uploading to a third-party server creates real privacy exposure
  • Files over 50–100 MB (most free tiers reject them)
  • Batch jobs of more than a few files
  • Workflows requiring consistent, reproducible quality settings

For anything beyond casual one-off conversions, a local tool is faster, private, and more reliable.


Method 5: Batch TIFF to JPG Conversion with Compresto

For photographers, designers, and anyone managing large image libraries on macOS, Compresto handles tiff to jpg converter workflows without Terminal or command-line knowledge.

Compresto is a native macOS app built for batch image processing. Drop a folder of TIFFs onto the app, choose JPEG as the output format, set your quality target, and let it process the entire batch — hardware-accelerated, in the background, while you work on something else.

Key capabilities for TIFF conversion:

  • Drag-and-drop batch processing — no file-by-file clicking
  • Adjustable quality settings — choose output quality per batch or globally
  • Format conversion alongside compression — convert TIFF to JPG and reduce file size in one pass
  • Preserves folder structure — outputs mirror the input directory layout, keeping projects organized
  • Non-destructive — originals are never overwritten

This makes Compresto particularly useful when working with large photo shoots, scanned document archives, or asset libraries where you need consistent output quality across hundreds or thousands of files. For a broader look at batch image workflows, see How to Batch Convert Images on Mac.


Choosing the Right JPG Quality Setting

Quality settings are the most consequential decision in any tiff to jpg converter workflow. Here's a practical reference:

Quality SettingFile Size vs TIFFUse Case
95–100~15–25× smallerPrint-quality digital delivery, client proofs
85–90~30–50× smallerProfessional sharing, high-res web hero images
75–85~60–100× smallerGeneral web use, blog images, social media
60–75~100–150× smallerThumbnails, previews, email attachments
Below 60Smallest filesAggressive compression; visible artifacts likely

A quality of 80–85 hits the sweet spot for most use cases: files that are visually indistinguishable from the original at normal viewing distances, at a fraction of the storage cost.

Always compare the output at 100% zoom before committing to a quality setting for a batch. Smooth gradients, skin tones, and uniform skies show JPG compression artifacts most clearly.

For a deeper look at quality trade-offs and format-specific optimization strategies, see Image Optimization for Web: The Complete Guide and Best Image Format for Websites in 2026.


TIFF to JPG Conversion Checklist

Before you run any conversion:

  • Backup originals first. TIFF is your archive. Never overwrite it.
  • Check for transparency. If the TIFF has an alpha channel, decide on a background fill color or convert to PNG instead.
  • Note color profile. sRGB TIFFs convert cleanly. Wide-gamut (ProPhoto, Adobe RGB) TIFFs should be converted to sRGB before export to JPG to avoid color shifts.
  • Check bit depth. 16-bit TIFFs will be downsampled to 8-bit. Review highlights and shadows on a test file first.
  • Decide on metadata. Strip it for web images; preserve it for professional deliveries.
  • Test one file before batching. Always review a sample output before processing hundreds of files.

FAQ

Is converting TIFF to JPG reversible?

No. Once a TIFF has been converted to JPG, the discarded pixel data cannot be recovered. The conversion is permanent and lossy. This is why you should always keep your original TIFF files and convert only copies.

Does converting TIFF to JPG reduce quality?

Yes, by definition — JPG is a lossy format. At high quality settings (80–90), the quality loss is typically imperceptible at normal viewing sizes. At aggressive settings below 60, blocking artifacts become visible, especially in smooth areas and around high-contrast edges.

What's the best quality setting for converting TIFF to JPG?

For professional sharing or print-quality delivery: 90–95. For web images and general use: 80–85. For thumbnails and previews: 65–75. Avoid going below 60 unless file size is the absolute priority.

Can I batch convert TIFFs to JPG on macOS without third-party software?

Yes. The sips command-line tool is built into macOS and handles batch conversion with a simple shell loop. See Method 2 above for the exact commands. For a GUI experience, Compresto offers drag-and-drop batch conversion without any Terminal usage.

Why are my converted JPGs showing a color shift?

This usually means your TIFF was saved in a wide-gamut color space (Adobe RGB, ProPhoto RGB) and the JPG was written without converting to sRGB first. Most browsers and web platforms assume sRGB. Use ImageMagick's -colorspace sRGB flag or Compresto's color profile handling to ensure accurate color in the output JPG.


Wrapping Up

The right tiff to jpg converter depends entirely on your situation:

  • One or two files, no install: macOS Preview
  • Scripted or automated workflows: sips (no install) or ImageMagick
  • Large batches with a GUI: Compresto
  • Quick one-off on any machine: Online converter (for non-sensitive files only)

Whatever method you choose, always convert copies and keep your original TIFFs as lossless archives. JPG gives you smaller, universally compatible files for sharing and web use — TIFF gives you the pixel-perfect master to go back to whenever you need it.

For more on managing and optimizing images on macOS, explore How to Compress Images for Faster Website Load Times and Image Optimization for Web.

Ready to compress your files? Join thousands of creators using Compresto ⚡