Saving Luma Range values with layers in style
Happy to see that we can save layers now in styles, however, I've created a structure for Shadows, Midtones, and Highlights by defining them with the Luma Range sliders.
However, those ranges do not save with the layers when I save it all as a style.
Is this expected behavior? Would be great to save , or at least have the option to save those values.
I know those 3 tonal ranges change per image, but starting out with a base defined would be great, and then I could adjust as needed.
Clearly, those luma range values are not shadows only like I saved in the style

-
One more note, I now realize that the layer also does NOT save the "filled mask" of that layer either. That too would be great to have.
0 -
Hi Michael,
this could be done easily with a script:
-- Add Luma layer
tell application "Capture One 23"
tell layers of primary variant
-- create a new layers named Luma1 and set Lumarange
--start copy here
set LumaLayer1 to make new layer with properties {name:"Luma1", kind:adjustment} at end
tell LumaLayer1
fill mask
end tell
--adjust the values as needet
tell luma range of LumaLayer1
set range high to 200
set range low to 50
set falloff low to 10
set falloff high to 240
end tell
--repeat and rename the code above for each new layer you need
end tell
end tell
0 -
And if you like you can adjust radius, sensitivity and invert too:
--adjust the values as needet
tell luma range of LumaLayer1
set range high to 200
set range low to 50
set falloff low to 10
set falloff high to 240
set radius to 50
set sensitivity to 60
set invert to false
end tell
--repeat and rename the code above for each new layer you need
0
Post is closed for comments.
Comments
3 comments