HKClipperVeiw.h 467 B

1234567891011121314151617181920212223
  1. //
  2. // HKClipperVeiw.h
  3. // HKBaseDemo
  4. //
  5. // Created by hukaiyin on 16/8/9.
  6. // Copyright © 2016年 hukaiyin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM (NSUInteger, ClipperType) {
  10. ClipperTypeImgMove,
  11. ClipperTypeImgStay
  12. };
  13. @interface HKClipperVeiw : UIView
  14. @property (nonatomic, strong) UIImage *baseImg;
  15. @property (nonatomic, assign) CGSize resultImgSize;
  16. @property (nonatomic, assign) ClipperType type;
  17. - (UIImage *)clipImg;
  18. @end