Melt guide

Why are Mac screenshots so big — and how to fix it

macOS saves screenshots as massive PNGs by default. Here's why, and three ways to make them smaller.

4 min read

You took a screenshot and it’s 4.7 MB. That’s not a photo. It’s a picture of a webpage. What is macOS doing?

Why this happens

Three things conspire to make Mac screenshots huge:

Multiply those together and a single screenshot of a browser window can clear 5 MB without anyone trying.

The native way (change the defaults)

Open Terminal and run:

defaults write com.apple.screencapture type jpg

defaults write com.apple.screencapture disable-shadow -bool true

killall SystemUIServer

That’s it. From now on, screenshots save as JPEG (usually 70-85% smaller than the PNG equivalent) and window grabs skip the shadow padding. To revert, run the same commands with png and false.

To change where they save (and stop cluttering Desktop):

defaults write com.apple.screencapture location ~/Pictures/Screenshots && killall SystemUIServer

The native way (after the fact)

For screenshots you’ve already taken, sips converts them in one line:

sips -s format jpeg -s formatOptions 80 Screenshot*.png —out converted/

(Make the converted folder first.) Or use Preview: open the screenshot, File → Export, switch format to JPEG, save.

The faster way

If you take a lot of screenshots — engineering bug reports, design QA, support tickets — installing a tool is worth it. Download Melt. $9.99 once, drag the screenshots in, get small files out.

  1. Download Melt and open it.
  2. Drag screenshots in (or a whole Screenshots folder).
  3. Pick output format — JPEG for smallest, PNG if you need transparency.
  4. Click Compress.

EXIF strips automatically, which on screenshots is rarely sensitive but still trims a few KB.

How much smaller will it really get?

A typical browser screenshot at 4-5 MB PNG drops to:

Honestly, if you take more than a few screenshots a week and you’re not changing the default to JPEG, you’re just hoarding bytes for no reason. The format default is the single biggest win.

← All Melt tips