UIImage+MT.m 808 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // UIImage+MT.m
  3. // ADuTechnology
  4. //
  5. // Created by Simon on 2019/9/28.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import "UIImage+MT.h"
  9. @implementation UIImage (MT)
  10. //压缩图片
  11. - (NSData *)compressQualityWithMaxLength:(NSInteger)maxLength {
  12. CGFloat compression = 1;
  13. NSData *data = UIImageJPEGRepresentation(self, compression);
  14. if (data.length < maxLength) return data;
  15. CGFloat max = 1;
  16. CGFloat min = 0;
  17. for (int i = 0; i < 12; ++i) {
  18. compression = (max + min) / 2;
  19. data = UIImageJPEGRepresentation(self, compression);
  20. if (data.length < maxLength * 0.9) {
  21. min = compression;
  22. } else if (data.length > maxLength) {
  23. max = compression;
  24. } else {
  25. break;
  26. }
  27. }
  28. return data;
  29. }
  30. @end