UNPKG

ngx-agora

Version:

Angular wrapper for Agora RTC client (https://www.agora.io/en/)

31 lines (30 loc) 896 B
/** * Image enhancement options. */ export interface BeautyEffectOptions { /** * The contrast level, used with the `lighteningLevel` parameter. * - 0: Low contrast level. * - 1: (Default) The original contrast level. * - 2: High contrast level. */ lighteningContrastLevel?: 0 | 1 | 2; /** * The brightness level. * * The value ranges from 0.0 (original) to 1.0. The default value is 0.7. */ lighteningLevel?: number; /** * The redness level. * * The value ranges from 0.0 (original) to 1.0. The default value is 0.1. This parameter adjusts the red saturation level. */ rednessLevel?: number; /** * The sharpness level. * * The value ranges from 0.0 (original) to 1.0. The default value is 0.5. This parameter is usually used to remove blemishes. */ smoothnessLevel?: number; }