setCameraZoomFactor method
- double factor,
- {ZegoPublishChannel? channel}
设置摄像头变焦倍数,支持指定推流通道号。每次摄像头重新启动时,摄像头变焦倍数都将会恢复初始值 (1.0)。
支持版本:1.20.0 及以上。
详情描述:设置摄像头变焦倍数。
调用时机:在开启预览 startPreview
后调用。
使用限制:摄像头启动后设置才生效。
注意:此函数仅在 ZegoExpressVideo SDK 中有效!
factor
摄像头变焦倍数,最小值为 1.0,最大值为 getCameraMaxZoomFactor 的返回值。channel
推流通道
Implementation
Future<void> setCameraZoomFactor(double factor,
{ZegoPublishChannel? channel}) async {
return await ZegoExpressImpl.instance
.setCameraZoomFactor(factor, channel: channel);
}