JRTCSDK-iOS v2401.0
视频客服 API 文档
载入中...
搜索中...
未找到
JRTCRecordWatermark.h
1//
2// JRTCRecordWatermark.h
3// JRTCSDKCallCenterDynamic
4//
5// Created by mirror on 2022/10/26.
6// Copyright © 2022 juphoon. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <CoreText/CoreText.h>
11
14
15NS_ASSUME_NONNULL_BEGIN
16
17@interface JRTCRecordWatermark : NSObject
21@property (nonatomic, assign) int posX;
25@property (nonatomic, assign) int posY;
29@property (nonatomic, assign) int width;
33@property (nonatomic, assign) int height;
34
35- (instancetype)initPosX:(int)posX posY:(int)posY;
36
37@end
38
43
51- (instancetype)initPosX:(int)posX posY:(int)posY filePath:(NSString *)filePath;
52
60- (instancetype)initPosX:(int)posX posY:(int)posY image:(UIImage *)image;
61
62@end
63
68
78- (instancetype)initPosX:(int)posX posY:(int)posY fontSize:(int)fontSize textColor:(NSUInteger)textColor text:(NSString *)text;
79
89- (instancetype)initPosX:(int)posX posY:(int)posY font:(UIFont * _Nonnull)font textColor:(NSUInteger)textColor text:(NSString *)text;
90
91@end
92
93
98
108- (instancetype)initPosX:(int)posX posY:(int)posY fontSize:(int)fontSize textColor:(NSUInteger)textColor dateFormat:(NSDateFormatter * _Nullable)dateFormat;
109
120- (instancetype)initPosX:(int)posX posY:(int)posY font:(UIFont *_Nonnull)font textColor:(NSUInteger)textColor dateFormat:(NSDateFormatter * _Nullable)dateFormat baseTimestamp:(NSTimeInterval)baseTimestamp;
121
122@end
123
124NS_ASSUME_NONNULL_END
125
Definition: JRTCRecordWatermark.h:18
int height
Definition: JRTCRecordWatermark.h:33
int posY
Definition: JRTCRecordWatermark.h:25
int width
Definition: JRTCRecordWatermark.h:29
int posX
Definition: JRTCRecordWatermark.h:21
Definition: JRTCRecordWatermark.h:43
Definition: JRTCRecordWatermark.h:68
Definition: JRTCRecordWatermark.h:98