MainspringGuides › Screenshot format JPG
macOS Guide

Change Mac screenshot format to JPG, PNG, or TIFF

Updated 2026 · 3 min read

Mac screenshots default to PNG — lossless quality, but large files. Switching to JPG cuts the file size dramatically. TIFF keeps every pixel. PDF is handy for presentations. Here's how to change the format, and which one to pick.

Change format in the Screenshot app (macOS Mojave and later)

The Screenshot toolbar added a format picker in macOS Mojave:

  1. Press ⌘⇧5 to open the Screenshot toolbar.
  2. Click Options.
  3. At the bottom of the Options menu, select your format: PNG, JPG, PDF, TIFF, or GIF (availability varies by macOS version).

Your choice takes effect immediately for all subsequent screenshots.

Change format via Terminal

The format is stored in the com.apple.screencapture type preference:

# switch to JPG (smaller files, slightly lossy)
defaults write com.apple.screencapture type jpg
killall SystemUIServer

Other valid values:

# lossless, larger files (default)
defaults write com.apple.screencapture type png

# uncompressed lossless, very large files
defaults write com.apple.screencapture type tiff

# good for multi-page content
defaults write com.apple.screencapture type pdf

# animated GIF — mostly useful for screen recordings
defaults write com.apple.screencapture type gif

To revert to PNG (the macOS default):

defaults write com.apple.screencapture type png
killall SystemUIServer
Do it in one click

Mainspring's screenshot panel lets you pick PNG, JPG, or TIFF from a dropdown — alongside shadow, date, thumbnail, and save-location settings, all in one place. No Terminal, fully reversible.

Try Mainspring free →

Signed & notarized by Apple · 1-day free trial · $29 once

Which format should you use?

The right choice depends on what you do with the screenshots:

Does JPG affect quality noticeably?

macOS uses a high-quality JPEG compression level by default, so the difference is subtle for most UI screenshots. Where it shows up is fine text, sharp edges, and areas of flat color — you may see slight compression artifacts around text. For sharing in chat or embedding in a document, JPG is fine. For design handoff or pixel inspection, stick with PNG.