Skip to main content

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Saving Luma Range values with layers in style

Comments

3 comments

  • Michael Clemens

    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
  • Permanently deleted user

    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
  • Permanently deleted user

    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.