// Copyright (c) 2024 Tencent. All rights reserved. // Author: eddardliu #import @protocol TUIMultimediaCropDelegate; @interface TUIMultimediaCropView : UIView @property(nonatomic) CGRect preViewFrame; @property(weak, nullable, nonatomic) id delegate; -(void)reset; -(void)rotation90; -(CGRect)getCropRect; @end @protocol TUIMultimediaCropDelegate - (void)onStartCrop; - (void)onCropComplete:(CGFloat)scale centerPoint:(CGPoint)centerPoint offset:(CGPoint)offset; @end