Apple Intelligence now features Image Playground, Genmoji, Writing Tools enhancements, seamless support for ChatGPT, and visual intelligence.

Apple Intelligence has also begun language expansion with localized English support for Australia, Canada, Ireland, New Zealand, South Africa, and the U.K. Learn more >

You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

screen shot - how to turn PNG into Jpeg

The screen shot application used to allow you to save the shot as a jpeg. If that is still possible, I haven't figured out how.


I have to pull the screen shot into adobe elements, save it as a jpeg and then export it. Is there an easier way?


And WHY did the developers make it more difficult? What good is a PNG anyway?

iMac Line (2012 and Later)

Posted on Jan 8, 2019 1:43 PM

Reply
Question marked as Top-ranking reply

Posted on Jan 8, 2019 5:23 PM

What good is a PNG anyway?

To answer the last question first, PNG files are higher quality than jpgs and support transparency.


If you press "command + Shift + 5", click on options, you can send screenshots to Preview automatically, then edit/save the screen shot in any format you like.

5 replies

Jan 8, 2019 3:32 PM in response to Molnarnj

In the Terminal, and prior to Mojave, you would enter the following to change the default image format with the screencapture shortcuts. By default, Mojave does not include the key 'type' in its screencapture plist, and one must add it with the appropriate image capture format.


Prior to Mojave (as tested on High Sierra) — because I had set it to png:


defaults read com.apple.screencapture

{
    "disable-shadow" = 1;
    type = png;
}


defaults write com.apple.screencapture type -string jpg

defaults read com.apple.screencapture

{
    "disable-shadow" = 1;
    type = jpg;
}


Now your screen capture shortcuts will output JPG images.


Mojave and later


Make a backup copy of the screencapture plist file, and then add the new key type with its string value jpg.


cp ~/Library/Preferences/com.apple.screencapture.plist ~/Library/Preferences/com.apple.screencapture.plist.bak

defaults write com.apple.screencapture type -string jpg

defaults read com.apple.screencapture

{
    "last-messagetrace-stamp" = "568258083.601015";
    "last-selection" =     {
        Height = 231;
        Width = 380;
        X = 286;
        Y = "369.5";
    };
    "last-selection-display" = 0;
    "location-last" = "/Applications";
    style = selection;
    target = file;
    type = jpg;
    video = 0;
}


Now, on Mojave, all screen capture shortcuts (including the new ⇧⌘5) will default to JPG image captures.


If you want to change the JPG back to PNG again:


defaults write com.apple.screencapture type -string png


screen shot - how to turn PNG into Jpeg

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.