NERoomVirtualBackgroundSource

class NERoomVirtualBackgroundSource(backgroundSourceType: Int, color: Int, source: String, blurDegree: Int)

Parameters

backgroundSourceType

自定义背景图的类型BackgroundSourceType

color

自定义背景图的颜色。格式为 RGB 定义的十六进制整数,不带 # 号。 例如 0xFFB6C1 代表浅粉色。默认值为 0xFFFFFF,表示白色。取值范围是 0x000000,0xFFFFFF。如果该值无效,SDK 将原始背景图片替换为白色的图片 该参数仅在自定义背景图类型为 BACKGROUND_COLOR 时生效。

source

自定义背景图片的本地绝对路径。支持 PNG 和 JPG 格式。该参数仅在自定义背景图类型为 BACKGROUND_IMG 时生效。

blurDegree

自定义背景图的虚化程度 该参数仅在自定义背景图类型为BlurDegree BACKGROUND_BLUR 时生效。

Constructors

NERoomVirtualBackgroundSource
Link copied to clipboard
fun NERoomVirtualBackgroundSource(backgroundSourceType: Int, color: Int, source: String, blurDegree: Int)
自定义背景图的类型BackgroundSourceType

Types

BackgroundSourceType
Link copied to clipboard
object BackgroundSourceType
BlurDegree
Link copied to clipboard
object BlurDegree

Functions

toString
Link copied to clipboard
open override fun toString(): String

Properties

backgroundSourceType
Link copied to clipboard
var backgroundSourceType: Int
自定义背景图的类型BackgroundSourceType
blurDegree
Link copied to clipboard
var blurDegree: Int
自定义背景图的虚化程度 该参数仅在自定义背景图类型为BlurDegree BACKGROUND_BLUR 时生效。
color
Link copied to clipboard
var color: Int
自定义背景图的颜色。格式为 RGB 定义的十六进制整数,不带 # 号。 例如 0xFFB6C1 代表浅粉色。默认值为 0xFFFFFF,表示白色。取值范围是 0x000000,0xFFFFFF。如果该值无效,SDK 将原始背景图片替换为白色的图片 该参数仅在自定义背景图类型为 BACKGROUND_COLOR 时生效。
source
Link copied to clipboard
var source: String
自定义背景图片的本地绝对路径。支持 PNG 和 JPG 格式。该参数仅在自定义背景图类型为 BACKGROUND_IMG 时生效。