UIImage+ClipperExtends.h 436 B

123456789101112131415161718192021
  1. //
  2. // UIImage+ClipperExtends.h
  3. // HKClipperDemo
  4. //
  5. // Created by hukaiyin on 16/8/30.
  6. // Copyright © 2016年 hukaiyin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImage (ClipperExtends)
  10. /**
  11. * 缩放图片
  12. *
  13. * @param newSize 图片尺寸
  14. * @param withScale 是否 * [UIScreen mainScreen].scale
  15. *
  16. * @return 处理后的图片
  17. */
  18. -(UIImage*)scaledToSize:(CGSize)newSize withScale:(BOOL)withScale;
  19. @end