All topics
Topic hub

Mac image compression

How to shrink images on Mac without uploading them — formats, tools, and techniques

Compressing images on Mac sounds simple until you actually try it. There are at least seven formats worth considering (JPEG, PNG, HEIC, WebP, AVIF, JPEG XL, TIFF), four major commercial tools (ImageOptim, TinyPNG, JPEGmini, Squoosh), one excellent built-in CLI (sips), and dozens of edge cases around color profiles, metadata, batch processing, and quality preservation.

This is our hub for everything we've written about image compression on Mac. The recurring theme: most of what you need is already on your computer — Apple's built-in sips engine handles the heavy lifting for free, and tools like our QuickPix simply wrap it with a GUI plus useful workflow features (folder watching, batch, modern format support).

We ship QuickPix Image Compressor because we wanted something native, offline-only, with HEIC support and unlimited batch — which ImageOptim and TinyPNG both fall short of in different ways. The articles below cover the practical decisions: when to use which format, how to script with sips, what to convert HEIC to and when, and how to set up auto-compression for design teams.

The app

Read more

How it compares to other tools

Frequently asked questions

What's the best image format for the web in 2026?

WebP is the practical default — about 30% smaller than JPEG at the same quality, supported in every major browser since Safari 14 (2020). AVIF produces 25-30% smaller files than WebP but encoding is significantly slower and third-party tool support lags. For most websites: WebP. For high-traffic critical images with a CDN that handles fallbacks: AVIF + WebP + JPEG via the <picture> element.

Why does my image compress smaller in some tools than others?

Different tools use different compression algorithms. ImageOptim bundles MozJPEG and Zopfli which often produce smaller JPEGs than sips at the same quality. TinyPNG's proprietary algorithm leads on JPEG+PNG. macOS sips (and tools built on it like QuickPix) prioritize speed and native integration over absolute byte-count efficiency. The differences are typically 5-15% at the same visual quality.

Should I strip EXIF metadata when compressing?

For images you'll publish publicly: yes — EXIF includes GPS coordinates, exact device model, and capture timestamp, which can leak more than you intend. For internal archives: keep EXIF (it's useful for organizing). Most Mac compression tools have a 'Strip Metadata' option; sips uses '-d all' to delete EXIF, ICC, and GPS in one pass.

How do I compress images on Mac without uploading them?

Use a local tool: macOS sips (built-in CLI), ImageOptim (open source, JPEG/PNG focused), QuickPix Image Compressor (Mac-native, all formats, GUI), or Preview's Export. All of these run entirely on your computer with zero network calls. TinyPNG and Squoosh do compression online — avoid those for internal screenshots, client work, or anything you don't want a third party processing.