Make an image file size smaller on Mac
Four ways to reduce image file size on macOS, from a one-line Terminal command to a drag-and-drop app.
You need this image smaller and you don’t want to read 2,000 words about codecs. Fine. Here are four ways that actually work on macOS, from quickest to most powerful.
The two-second way
Right-click the image in Finder → Quick Actions → Convert Image. Pick a format and choose a smaller size (Small, Medium, Large, Actual Size). This uses macOS’s built-in image pipeline and is genuinely fine for one-off shrinking. Limitation: the size presets are pixel dimensions, not file size, so the result is unpredictable.
The Preview way
Open in Preview. File → Export. Pick JPEG, drag the Quality slider, watch the size estimate update at the bottom. Hit Save. This is the most controllable native option — you can see exactly what you’re getting before you commit.
If the image is too big in pixels too, use Tools → Adjust Size first. Set the width to 2000px (or whatever you need) before exporting.
The Terminal way
sips is built into macOS. One line:
sips -s format jpeg -s formatOptions 75 -Z 2000 input.jpg —out output.jpg
What each flag does:
-s format jpeg— output format. Usepngorheicif you prefer.-s formatOptions 75— JPEG quality, 0-100. 75-80 is the visually-lossless tier.-Z 2000— cap the longest edge at 2000px (preserves aspect ratio).
This is the fastest path for one-off jobs once you’ve memorised the command.
The faster way (for more than one)
If you have more than three or four images, the GUI options get tedious and the Terminal command becomes a loop. Download Melt — a $9.99 Mac app built for exactly this.
- Download Melt and open it.
- Drag images or a folder in.
- Pick output format and quality (80 is the default for most things).
- Optionally enable Resize.
- Click Compress.
The “never makes a file bigger” check means already-optimised images aren’t re-saved larger — they pass through unchanged.
How much smaller will it really get?
JPEGs at quality 80: 40-70% smaller. PNGs through Melt’s quantizer: 60-85% smaller. HEICs converted to JPEG: usually similar size, but compatible with everything. Screenshots saved as PNG converted to JPEG: 80-90% smaller. The biggest wins come from converting format and resizing, not from compression alone — so don’t sleep on the -Z flag.
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.