Video SDK for iOS API Reference
|
virtual background helper. More...
#include <ZoomVideoSDKVirtualBackgroundHelper.h>
Inherits NSObject.
Instance Methods | |
(BOOL) | - isSupportVirtualBackground |
Determine whether the user can support smart virtual backgrounds. | |
(ZoomVideoSDKVirtualBackgroundItem *_Nullable) | - addVirtualBackgroundItem: |
Add virtual background object. | |
(ZoomVideoSDKError) | - removeVirtualBackgroundItem: |
Remove virtual background object. | |
(NSArray< ZoomVideoSDKVirtualBackgroundItem * > *_Nullable) | - getVirtualBackgroundItemList |
Returns a collection of virtual background item as an object of type ZoomVideoSDKVirtualBackgroundItem . | |
(ZoomVideoSDKError) | - setVirtualBackgroundItem: |
Select virtual background item. | |
(ZoomVideoSDKVirtualBackgroundItem *_Nullable) | - getSelectedVirtualBackgroundItem |
Get a selected virtual background item. | |
virtual background helper.
Definition at line 37 of file ZoomVideoSDKVirtualBackgroundHelper.h.
- (ZoomVideoSDKVirtualBackgroundItem *_Nullable) addVirtualBackgroundItem: | (UIImage *_Nullable) | image |
Add virtual background object.
image | image of virtual background. |
ZoomVideoSDKVirtualBackgroundItem
. Once the function is called successfully, this parameter will store the pointer to the ZoomVideoSDKVirtualBackgroundItem*. - (ZoomVideoSDKVirtualBackgroundItem *_Nullable) getSelectedVirtualBackgroundItem |
Get a selected virtual background item.
ZoomVideoSDKVirtualBackgroundItem
. - (NSArray< ZoomVideoSDKVirtualBackgroundItem * > *_Nullable) getVirtualBackgroundItemList |
Returns a collection of virtual background item as an object of type ZoomVideoSDKVirtualBackgroundItem
.
- (BOOL) isSupportVirtualBackground |
Determine whether the user can support smart virtual backgrounds.
- (ZoomVideoSDKError) removeVirtualBackgroundItem: | (ZoomVideoSDKVirtualBackgroundItem *_Nullable) | imageItem |
Remove virtual background object.
imageItem | The ZoomVideoSDKVirtualBackgroundItem object to be removed. |
- (ZoomVideoSDKError) setVirtualBackgroundItem: | (ZoomVideoSDKVirtualBackgroundItem *_Nullable) | imageItem |
Select virtual background item.
imageItem | The ZoomVideoSDKVirtualBackgroundItem object to select. |