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

Avoid Lightroom develop adjustment on images back from Photoshop

New Here ,
Feb 21, 2025 Feb 21, 2025

Hi, 
I am working with LR 14.2 and PS 26.3 on Mac Mini M4 with Sequoia 15.3.1.

LR preferences are set to use PS as external TIFF 8bit image editor with Adobe RGB 1998 color profile (same profile is set in PS).
I import a RAW image into Lightroom, apply a user preset, export to photoshop, make some changes, save as TIFF and close. Returning to LR I find the TIFF image with a develop adjustment applied.

I have noticed that sometimes is the same preset of the RAW image, sometimes there is just the small develop icon in the bottom right corner of the thumbnail which seems no changes has been applied.

Is it possible to prevent LR from applying any sort of develop adjustment?

TOPICS
macOS
258
Translate
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 ,
Feb 21, 2025 Feb 21, 2025

Do you mean the Develop Preset seems to be applied twice to the TIF? (Once in LrC and again when it returns from Ps.)

And after the TIF is 'Saved' from Ps, does the TIF in LrC show any develop steps in the History panel?  I see this in History- 2025-02-22 09_20_16-Roberts Catalog-v14 - Adobe Photoshop Lightroom Classic - Develop.jpg

And my TIF from Ps also shows the 'Photo Has Development Adjustments' badge- 2025-02-22 09_20_33-Roberts Catalog-v14 - Adobe Photoshop Lightroom Classic - Library.jpg which is apparently normal.

 

If you edit in LrC and apply a preset then [Edit in Ps], then indeed that develop preset is incorporated into the TIF that you are editing in Ps. (In the same way that a raw image edited in ACR and opened in Ps would show the ACR edits.)

 

Regards. My System: Windows-11, Lightroom-Classic 14.5.1, Photoshop 26.10, ACR 17.5, Lightroom 8.5, Lr-iOS 10.4.0, Bridge 15.1.1 .
Translate
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 ,
Feb 22, 2025 Feb 22, 2025

Hi Rob,

it is exactly what it happens but, when the TIF comes back to LR, it has the same develop settings previously applied to its RAW version causing, in my case, unwanted changes to WB color, Highlights settings etc...Screenshot 2025-02-22 alle 09.16.04.pngScreenshot 2025-02-22 alle 09.16.14.pngScreenshot 2025-02-22 alle 09.16.23.png

Translate
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 ,
Feb 22, 2025 Feb 22, 2025

A mystery to me, and I don't have an answer. I cannot emulate the same in my system.

Can I clarify some of your statements-

"export to photoshop" -  DO you mean EXPORT, or are you using the [Edit In] command [Ctrl+E]?

"save as TIFF" - Do you simply [Save] and [Close] in Ps, or are you doing a [Save AS]?

Are you Importing the new TIF to LrC (either by normal import or synchronize folder)?

I note your screen-clip shows two images in "Previous Import" which is a little odd! It suggests you have (freshly) Imported the raw and the TIF also.

Do you have that preset named in the Develop Settings in the [Apply During Import]  panel?

So I don't have the answer! You can however, until you get a corrent answer,   do a [Right-Click] on the "Edited in Photoshop" history step and then [Clear History above this step].

 

 

Regards. My System: Windows-11, Lightroom-Classic 14.5.1, Photoshop 26.10, ACR 17.5, Lightroom 8.5, Lr-iOS 10.4.0, Bridge 15.1.1 .
Translate
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 ,
Feb 22, 2025 Feb 22, 2025
LATEST

@bruno_4933 

 

When the file is open in Photoshop, go to File > File Info and look at the raw data tab for crs: metadata. These entries are the camera raw settings used by Lr or ACR.

 

2025-02-23_12-16-56 (1).png

 

A Photoshop script can remove this metadata. Test with care on a duped or non-critical file, I don't use Lr so I don't know if this will help or not:

 

// Remove Camera Raw Settings CRS Metadata from Open Doc.jsx

#target photoshop

removeCRS();

function removeCRS() {
    if (!documents.length) return;
    if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var xmp = new XMPMeta(activeDocument.xmpMetadata.rawData);
    XMPUtils.removeProperties(xmp,XMPConst.NS_CAMERA_RAW, "", XMPConst.REMOVE_ALL_PROPERTIES);
    app.activeDocument.xmpMetadata.rawData = xmp.serialize();
} 

 

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

 

Translate
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