UGCKitWatermark.m 556 B

1234567891011121314151617181920
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import "UGCKitWatermark.h"
  3. @implementation UGCKitWatermark
  4. - (instancetype)initWithImage:(UIImage *)image frame:(CGRect)frame duration:(NSTimeInterval)duration
  5. {
  6. if (self = [super init]) {
  7. _image = image;
  8. _frame = frame;
  9. _duration = duration;
  10. }
  11. return self;
  12. }
  13. + (instancetype)watermarkWithImage:(UIImage *)image frame:(CGRect)frame duration:(NSTimeInterval)duration;
  14. {
  15. return [[UGCKitWatermark alloc] initWithImage:image frame:frame duration:duration];
  16. }
  17. @end