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
May 16, 2026 · 8 min read
How to compress images on Mac without uploading them anywhere (2026)
A practical guide for shrinking PNG, JPEG, HEIC, and WebP images on macOS while keeping every byte on your own machine — with five real options compared.
May 16, 2026 · 2 min read
Mac 上离线压缩图片的完整指南(2026)
5 款 Mac 图片压缩工具实测对比 — 不上传、不收订阅、支持 HEIC,从命令行到 GUI 全部走一遍。
May 17, 2026 · 7 min read
macOS sips command — the complete guide (2026)
Every Mac ships with a fast, sandbox-safe image processor called sips. Resize, convert, compress, strip metadata, batch — without installing anything. Here's everything it can do.
May 17, 2026 · 9 min read
WebP vs AVIF vs JPEG on Mac — when to use which (with real file-size numbers)
Three modern image formats, three different trade-offs. Here's a real-world test on Mac, with concrete recommendations for web, design, and archival use.
May 17, 2026 · 8 min read
How to convert HEIC to JPEG on Mac in batch (4 ways, ranked)
iPhone photos are HEIC by default. Sending them to Windows, Android, or older web tools means converting. Here are the four practical ways on Mac.
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.