Copy link to clipboard
Copied
Hello everyone. I saw a tutorial for white balance on YouTube using Adobe Camera Raw, and the white balance eyedropper selects the entire image area. In most cases, it gives me better results than the automatic white balance. Is there a way to program this into Photoshop as a script/action? It would mean a lot to me. Link to the YouTube clip.
(Watch the video from the 50th second.) Thank you very much in advance.
Copy link to clipboard
Copied
That tutorial is for rendered images in the Camera Raw Filter, which is not exactly the same as Adobe Camera Raw.
I just tested and the script output records the absolute white balance result, not the selection. So If this is possible to automate in the CRF it isn't going to be the same process as manually using the eyedropper to "select all" with a marquee.
The white balance eyedropper is usually best set against something white or neutral, not by selecting the entire image (YMMV).
Copy link to clipboard
Copied
Yes, I meant the Camera Raw Filter, my apologies. For automatic white balance, I found a script on the forum, and it's useful of course, but I'd like to "automate" this as well somehow. By "absolute white balance result" for the script, did you mean that the script remembers the same value for temperature/tint settings? (I don't need that) Thanks.
Copy link to clipboard
Copied
Yes, that's right, the recording captures the temp/tint values of the image, not the "white balance eyedropper marquee".
Copy link to clipboard
Copied
The standard auto white balance command of the CRF can be scripted:
/*
CRF - Camera Raw Filter Auto White Balance.jsx
v1.0 - 8th February 2024, Stephen Marsh
https://community.adobe.com/t5/photoshop-ecosystem-bugs/acr-auto-white-balance-action-makes-the-same-change-every-time/idc-p/14409202
*/
#target photoshop
var actDesc = new ActionDescriptor();
var idWBal = charIDToTypeID( "WBal" );
var idauto = stringIDToTypeID( "auto" );
actDesc.putEnumerated( idWBal, idWBal, idauto );
executeAction( stringIDToTypeID("Adobe Camera Raw Filter"), actDesc, DialogModes.NO );
Find more inspiration, events, and resources on the new Adobe Community
Explore Now