123456789101112131415161718192021222324252627282930313233343536373839 |
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface DCTZImageCropManager : NSObject
- + (void)overlayClippingWithView:(UIView *)view cropRect:(CGRect)cropRect containerView:(UIView *)containerView needCircleCrop:(BOOL)needCircleCrop;
- + (UIImage *)cropImageView:(UIImageView *)imageView toRect:(CGRect)rect zoomScale:(double)zoomScale containerView:(UIView *)containerView;
- + (UIImage *)circularClipImage:(UIImage *)image;
- @end
- @interface UIImage (DCTZGif)
- + (UIImage *)sd_tz_animatedGIFWithData:(NSData *)data;
- @end
|