BeautyOptions

Beauty options.

export class BeautyOptions {
  
  lighteningContrastLevel?: LighteningContrastLevel;
  
  lighteningLevel?: number;
  
  smoothnessLevel?: number;
  
  rednessLevel?: number;
  
  sharpnessLevel?: number;
}

Properties

lighteningContrastLevel
Contrast level, usually used together with lighteningLevel. The higher the value, the greater the contrast between light and dark. See LighteningContrastLevel.
lighteningLevel
Whitening level, value range [0.0,1.0], where 0.0 indicates original brightness. Default is 0.0. The higher the value, the greater the whitening effect.
smoothnessLevel
Smoothing level, value range [0.0,1.0], where 0.0 indicates original smoothness. Default is 0.0. The higher the value, the greater the smoothing effect.
rednessLevel
Redness level, value range [0.0,1.0], where 0.0 indicates original redness. Default is 0.0. The higher the value, the greater the redness effect.
sharpnessLevel
Sharpness level, value range [0.0,1.0], where 0.0 indicates original sharpness. Default is 0.0. The higher the value, the greater the sharpness effect.