TIOParams.RAW_GammaToeSlope
Declaration
property RAW_GammaToeSlope: Double;
Description
Specifies the slope for linear part of gamma curve.
Note:
RAW_GammaToeSlope is only used if
CameraRawEngine=ieenDLL.
Default: 4.5
// Set recommended defaults for RAW Loading
ImageEnView1.IO.Params.RAW_FourColorRGB := False;
ImageEnView1.IO.Params.RAW_QuickInterpolate := False;
ImageEnView1.IO.Params.RAW_UseAutoWB := True;
ImageEnView1.IO.Params.RAW_UseCameraWB := True;
ImageEnView1.IO.Params.RAW_AutoAdjustColors := False;
ImageEnView1.IO.Params.RAW_Gamma := 2.222;
ImageEnView1.IO.Params.RAW_GammaToeSlope := 4.5;
ImageEnView1.IO.Params.RAW_AutoBright := False;
ImageEnView1.IO.Params.RAW_OutputColorSpace := iercsSRGB;
ImageEnView1.IO.LoadFromFile('C:\CRW_0001.CRW');
// Set gamma for sRGB curve
ImageEnView1.IO.Params.RAW_Gamma := 2.4;
ImageEnView1.IO.Params.RAW_GammaToeSlope := 12.92;
ImageEnView1.IO.LoadFromFile('C:\CRW_0001.CRW');
See Also
◼RAW_Gamma