setPortraitSegmentationBackgroundPath method Null safety
- String imgPath,
- ZegoEffectsScaleMode mode
设置人像分割的自定义背景图片路径。
String imgPath - 本地图片资源路径。 ZegoEffectsScaleMode mode - 图片缩放模式。
注意事项: 使用时机在初始化ZegoEffects之后
适用版本: >= 2.1.0
Implementation
Future<void> setPortraitSegmentationBackgroundPath(String imgPath, ZegoEffectsScaleMode mode) async {
return await _channel.invokeMethod('setPortraitSegmentationBackgroundPath', {'path': imgPath, 'mode': mode.index});
}