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

Tiif files created by capture one open in camera raw instead of as tiff in Photoshop

Explorer ,
Jul 04, 2023 Jul 04, 2023

Hi there, I have a strange problem in Photoshop/Bridge with camera raw and Capture one.

 

I had to use capture one for postproduction due to some client requierements.  Exporting the raws from camera raw to tiff would cause Photoshop to open these tiffs in camera raw.  Exporting them in PSD format would open them normally as Photoshop file.  Doing that works fine, but strangely, after retouching and stuff, from Photoshop generated Tiffs would again only open as Camera Raw, including changing totally the look of the images.

Now I know I can switch off Tiff support in camera raw, but when I send those files to my client they will have the same problem. I want to get rid of the added information attached to those Images.

 

Please help!!

Thank you

Andre

TOPICS
macOS
1.4K
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

correct answers 2 Correct answers

Community Expert , Jul 04, 2023 Jul 04, 2023

The default setting in ACR file handling is "Open TIFFs with settings". If the file contains parametric edits readable by ACR, then that's where they will open. It's enough that the file opens once in ACR, then it will have ACR settings.

 

The solution is to either disable TIFF from ACR file handling, or make sure the file contains no ACR settings.

 

Most people will have this at default, so when sending files out you'll want to go for the second option.

Translate
Community Expert , Jul 04, 2023 Jul 04, 2023

In addition to the native methods of removing the CRS metadata, one can also incorporate scripts in the workflow to do so as well.

 

/* 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.removePro
...
Translate
Adobe
Explorer ,
Jul 04, 2023 Jul 04, 2023

OK sorry, I was able to remove camera raw settings in bridge^^ problem solved so far, still need to find out why that happend in the first place but thats with capture one I guess.

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 ,
Jul 04, 2023 Jul 04, 2023

The default setting in ACR file handling is "Open TIFFs with settings". If the file contains parametric edits readable by ACR, then that's where they will open. It's enough that the file opens once in ACR, then it will have ACR settings.

 

The solution is to either disable TIFF from ACR file handling, or make sure the file contains no ACR settings.

 

Most people will have this at default, so when sending files out you'll want to go for the second option.

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 ,
Jul 04, 2023 Jul 04, 2023

In addition to the native methods of removing the CRS metadata, one can also incorporate scripts in the workflow to do so as well.

 

/* 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();
} 

 

 

 

/*
Batch Remove CRS Metadata from JPEG and TIFF.jsx
*/

// https://forums.adobe.com/thread/2584026

#target photoshop;

var inputFolder = Folder.selectDialog("Please select folder to process");

if (inputFolder != null) {
    var fileList = inputFolder.getFiles(/\.(jpg|jpeg|tif|tiff|psd)$/i);
    for (var a in fileList) {
        removeCRS(fileList[a]);
    }
}

function removeCRS(selectedFile) {
    if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var xmpFile = new XMPFile(selectedFile.fsName, XMPConst.FILE_UNKNOWN, XMPConst.OPEN_FOR_UPDATE | XMPConst.OPEN_USE_SMART_HANDLER);
    var xmp = xmpFile.getXMP();
    XMPUtils.removeProperties(xmp, XMPConst.NS_CAMERA_RAW, "", XMPConst.REMOVE_ALL_PROPERTIES);
    if (xmpFile.canPutXMP(xmp)) {
        xmpFile.putXMP(xmp);
        xmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
    }
};

 

 

 

/* Remove Camera Raw Settings CRS Metadata.jsx */

// https://forums.adobe.com/message/9758205#9758205

#target bridge

if( BridgeTalk.appName == "bridge" ) {
remCRS = new MenuElement("command", "Remove Camera Raw Metadata",  "at the end of Tools");
}
remCRS.onSelect = function () {
if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
var sels = app.document.selections;
for (var a in sels){
var thumb = new  Thumbnail(app.document.selections[a]);
var md = thumb.synchronousMetadata;
var xmp = new XMPMeta(md.serialize());
        if(thumb.hasMetadata){
         XMPUtils.removeProperties(xmp, XMPConst.NS_CAMERA_RAW, "", XMPConst.REMOVE_ALL_PROPERTIES);
        var updatedPacket = xmp.serialize(XMPConst.SERIALIZE_OMIT_PACKET_WRAPPER | XMPConst.SERIALIZE_USE_COMPACT_FORMAT);
        thumb.metadata = new Metadata(updatedPacket);
        }
    }
};

 

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
New Here ,
Sep 24, 2024 Sep 24, 2024
LATEST

This solves the problem. No need for Bridge.

In Camera RAW got to Camera Raw Preferences-file handling -JPEG/HEIC setting and Tiff settings. Disable both

https://www.youtube.com/watch?v=MABuLWFwKfI

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