Compress an image right from Finder on Mac
Right-click → compress. macOS sort of supports this. Here's what works, what doesn't, and the faster way.
You want to right-click an image in Finder, hit “Compress,” and have a smaller file. Reasonable ask. macOS partially supports it — it’s just not labelled compression.
The native way
Right-click the image → Quick Actions → Convert Image. You’ll get a small dialog with two options:
- Format: JPEG, PNG, or HEIF.
- Image Size: Small, Medium, Large, Actual Size.
This uses macOS’s built-in image pipeline (the same one Preview and sips use). Pick HEIF for the smallest output, JPEG for the broadest compatibility. The “Image Size” presets correspond to roughly 640px / 1280px / 1920px / original on the longest edge.
It works. The catches:
- No quality control. You can’t choose JPEG quality. macOS picks for you (somewhere around 75).
- Predefined sizes only. You can’t enter “1500px.”
- The output saves next to the original with the same name plus a format suffix.
For most quick jobs, this is genuinely fine. If you’ve never noticed it before, give it a try — right-click an image right now.
Adding a custom Quick Action
If you want a Finder right-click that runs at your settings, build one with Automator:
-
Open Automator → New → Quick Action.
-
Set “Workflow receives” to “image files” in Finder.
-
Drag in a “Run Shell Script” action.
-
Paste:
for f in ”$@”; do sips -s format jpeg -s formatOptions 80 -Z 2000 “$f” —out ”${f%.*}-small.jpg”; done -
Set “Pass input” to “as arguments.”
-
Save as “Compress to 2000px JPEG.”
Now it appears under Quick Actions in Finder’s right-click menu. You can build several — one for screenshots, one for web exports, one for email size — each with different settings.
The faster way
If you don’t want to build Automator workflows, Download Melt. It doesn’t add a right-click action, but it sits in your dock and accepts dragged files from anywhere.
- Download Melt and pin it to the dock.
- From Finder, drag any image (or selection of images) onto the Melt icon.
- Adjust settings if needed.
- Click Compress.
For a Finder-centric workflow, dragging onto a dock icon is about the same number of clicks as Right-click → Quick Action — and you get real control over quality, format, resize, and EXIF in the same gesture.
How much smaller will it really get?
Quick Action with HEIF: 50-70% smaller than the original JPEG. Quick Action with JPEG: 40-60%. Automator + sips at quality 80: similar to Melt at quality 80, which is 60-85% for PNG and 50-70% for JPEG.
Honestly, the right answer depends on how often you do this. For weekly compressions, Quick Action is enough. For daily, build the Automator workflow or grab a real tool.
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.