How to resize an image on Mac without using Preview
Preview's resize tool is clunky for batches and tucked behind a menu. Here are faster ways to resize an image on macOS.
You’ve got a 6000-pixel-wide photo and you need it at 1200 pixels for a blog post or a Shopify listing. Resizing in Preview works, but it’s slow when you have ten images to do and the dialog hides behind Tools → Adjust Size like a state secret.
Two paths
Native macOS. Two built-in options:
-
Preview. Open the image, Tools → Adjust Size, type a new width (height auto-fills if “Scale proportionally” is on), hit OK, then File → Save. Solid for single images. To batch, you have to select multiple files in Finder, open them all in one Preview window, select all in the sidebar, then Adjust Size — workable but fiddly.
-
Terminal
sips. Much faster for batches:sips -Z 1200 input.jpg --out output.jpgThe
-Zflag scales the image so its longest edge is 1200px (preserving aspect ratio). Use-z height widthfor exact dimensions. Loop it over a folder and you’re done in a second.
Melt. A drag-and-drop app ($9.99 one-time) that resizes and re-compresses in one step. Useful when you want both — say, downscaling a phone photo for the web and shrinking the file at the same time.
Resize images in Melt
- Open Melt.
- Drag your image (or folder) in.
- Enable Resize and enter a max width or longest edge — say 1200px.
- Pick an output format and quality if you also want to compress.
- Click Compress.
Melt’s resize keeps the aspect ratio by default and won’t upscale — if your source is already smaller than your target, it leaves the dimensions alone.
Honest tradeoffs
There’s no magic to resizing — every tool uses similar resampling algorithms (Lanczos or bicubic), and the results look nearly identical at the pixel level. The real difference is workflow: Preview is fine for one-offs, sips wins on terminal-friendly scripting, and a drag-and-drop tool wins when you want resize plus format conversion plus compression in a single pass without thinking about it.
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.