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

Photoshop 22.4.1 : EXIF loss with "export as" in JPEG format !!!

New Here ,
Jun 04, 2021 Jun 04, 2021

Copy link to clipboard

Copied

With Photoshop 22.4.1, we can no longer use "Save as" JPEG format which allowed to keep the EXIF. With "export as", I lose the EXIF in JPEG format !!! ??? Is this a joke?

Please, how to have the EXIF with this format?

> With version 22.3.1, no problem for "Save as" in JPEG format with EXIF.

I'm sad !

TOPICS
Windows

Views

478

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
Community Expert ,
Jun 04, 2021 Jun 04, 2021

Copy link to clipboard

Copied

You should be able to use saveAs jpeg in a script and have the Exif meta data  Also if the image is  not to large for the web  Export Save For Web can preserve all Meta data  saving a jpeg file

Capture.jpg

JJMack

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
New Here ,
Jun 04, 2021 Jun 04, 2021

Copy link to clipboard

Copied

Thank you for your reply. Finally this version becomes very complicated for nothing!
How do you go about the script?
Cordially

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 ,
Jun 04, 2021 Jun 04, 2021

Copy link to clipboard

Copied

Scripting is Programming. It requires you to learn much.  It not easy like Actions. I only hack at it. You can learn much from reading Adobe script code in Export Layer to Files.   However if you start reading that code you will most likely run for the hills.  

 

 

Use Export Save for Web  (Alt+Ctrl+Shift+S) to save  Jpeg and Png files instead of

"Save a Copy" Work around the Save a Copy issue....  You only need to resort to scripting  for  saveing  Photoshop PDF files. could be something as simple as this:

var Name = activeDocument.name;
var pdfFile =  new File('~/Desktop/' + Name);
SaveAsPDF(pdfFile, 10);
function SaveAsPDF(saveFile, jpegQuality){
	var doc = activeDocument;
	pdfSaveOptions = new PDFSaveOptions();
	pdfSaveOptions.alphaChannels = true;
	pdfSaveOptions.embedColorProfile = true;
    pdfSaveOptions.encoding = PDFEncoding.JPEG;
    pdfSaveOptions.jpegQuality = jpegQuality;
	activeDocument.saveAs(File(saveFile+".pdf"), pdfSaveOptions, true,Extension.LOWERCASE);
}
JJMack

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
New Here ,
Jun 18, 2021 Jun 18, 2021

Copy link to clipboard

Copied

LATEST

To save in other formats, like JEPG, just use the shortcut "Ctrl + Alt + S" or by the File menu> save a copy.
Thanks for your help.

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