• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

How to skip Jpeg quality pop up ?

Explorer ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

In Photoshop every time i save in Jpeg it pops a window asking me about the quality.

Is there a way to set a default quality and skip the pop up window ?

Views

1.5K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Guest
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

Hi

You could set the quick export format to JPG and then do a File > Export > Quick Export as JPG

pref.png

export.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

Quick Export would be truly brilliant, if they could only give us a possibility to embed the color profile. As it is, it's utterly useless.

 

I don't get it. Why is someone at Adobe so afraid of color profiles if there's only the slightest chance that the resulting file may end up on the web? What are they afraid of? Who's deciding this?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

Quick export as JPG might had been quicker if it has a hotkey however it doesn't seem to have one.

Also i cannot make an action for quick export as JPG because for some reason actions don't record this!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

You must use Save As when recording action or Save for Web, File > Export As will not be recorded.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

You can also record Photoshop action to save with certain quality. The only problem with action is that you must record and location so it will always save file in the same location. If you turn on modal to see Save As dialogue then you will see and quality pop-up.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 02, 2020 Jan 02, 2020

Copy link to clipboard

Copied

LATEST

Two other options not yet mentioned:

 

1) You can record the batch automation script "Image Processor Pro" into an action. This will then save without any pop-ups.

 

https://sourceforge.net/projects/ps-scripts/files/Image%20Processor%20Pro/v3_2%20betas/

 

 

2) A custom script can be used to save to JPEG:

 

 

// Save As a Copy to JPEG (original file left open)

#target photoshop

var doc = app.activeDocument;
var docName = doc.name.replace(/\.[^\.]+$/, '');
var docPath = Folder.selectDialog('Select a folder to save the JPEG file to:', '~/Desktop/');

var saveFileNamePath = new File(docPath + '/' + docName + '.jpg');
saveJPG(saveFileNamePath);
alert('JPEG Saved!');

function saveJPG(saveFileNamePath) {
    var jpgOptions = new JPEGSaveOptions();
    jpgOptions.embedColorProfile = true;
    jpgOptions.formatOptions = FormatOptions.STANDARDBASELINE; // or OPTIMIZEDBASELINE or PROGRESSIVE
    jpgOptions.matte = MatteType.NONE;
    jpgOptions.quality = 12; // image quality (0-12)
    activeDocument.saveAs(saveFileNamePath, jpgOptions, true); // false to show dialog
}

 

https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines