UIImage+MT.h 310 B

123456789101112131415161718
  1. //
  2. // UIImage+MT.h
  3. // ADuTechnology
  4. //
  5. // Created by Simon on 2019/9/28.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIImage (MT)
  11. //压缩图片
  12. - (NSData *)compressQualityWithMaxLength:(NSInteger)maxLength;
  13. @end
  14. NS_ASSUME_NONNULL_END