Video SDK for iOS API Reference
All Classes Files Functions Enumerations Enumerator Properties
ZoomVideoSDKMaskHelper Class Reference

#include <ZoomVideoSDKMaskHelper.h>

Inherits NSObject.

Instance Methods

(UIImage *_Nullable) - generateMask:width:height:
 Generate a mask UIImage based on the mask information that is located within the canvas width or the canvas height. The recommended aspect ratio is 1280 * 720 or 720 * 12880.
 
(ZoomVideoSDKError- setVideoMask:background:mirror:
 Set the mask to self video.
 

Detailed Description

The helper to set the video mask.

Definition at line 59 of file ZoomVideoSDKMaskHelper.h.

Method Documentation

◆ generateMask:width:height:

- (UIImage *_Nullable) generateMask: (NSArray< ZoomVideoSDKMaskInfo * > *_Nullable) maskInfos
width: (NSInteger) canvasWidth
height: (NSInteger) canvasHeight 

Generate a mask UIImage based on the mask information that is located within the canvas width or the canvas height. The recommended aspect ratio is 1280 * 720 or 720 * 12880.

Parameters
maskInfosThe mask informations used to generate mask.
canvasWidthThe canvas width used to locate the mask information.
canvasHeightThe canvas height used to locate the mask information.
Returns
The mask UIImage

◆ setVideoMask:background:mirror:

- (ZoomVideoSDKError) setVideoMask: (UIImage *_Nullable) maskImage
background: (UIImage *_Nullable) backgroundImage
mirror: (BOOL) isMirrored 

Set the mask to self video.

Parameters
maskImageUIIage generate by interface "generateMask:width:height:". Or you can generate the bitmap by yourself. This mask image should meet the following conditions: The area through which you want to see the video should be set to opaque and the other areas should be set to transparent.
backgroundImageThe background iamge.
isMirroredWhether the video that is based by the mask generate is mirrored. For ZoomVideoSDKVideoCanvas, the value ZoomVideoSDKVideoHelper#isMyVideoMirrored() can be passed in. For ZoomVideoSDKRawDataPipe, the correct value should be passed.
Returns
errorCode ZoomVideoSDKError.