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