UIImageView+MT.m 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. //
  2. // UIImageView+MT.m
  3. // Demo
  4. //
  5. // Created by Simon on 2019/8/17.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import "UIImageView+MT.h"
  9. @implementation UIImageView (MT)
  10. - (void)showInMiddle
  11. {
  12. [self setContentScaleFactor:[[UIScreen mainScreen] scale]];
  13. self.contentMode = UIViewContentModeScaleAspectFill;
  14. self.autoresizingMask = UIViewAutoresizingFlexibleHeight;
  15. self.clipsToBounds = YES;
  16. self.layer.masksToBounds = YES;
  17. }
  18. #pragma mark -- 获取网络图片大小
  19. /**
  20. * 根据图片url获取网络图片尺寸
  21. */
  22. -(CGSize)getImageSizeWithURL:(id)URL{
  23. NSURL * url = nil;
  24. if ([URL isKindOfClass:[NSURL class]]) {
  25. url = URL;
  26. }
  27. if ([URL isKindOfClass:[NSString class]]) {
  28. url = [NSURL URLWithString:URL];
  29. }
  30. if (!URL) {
  31. return CGSizeZero;
  32. }
  33. CGImageSourceRef imageSourceRef = CGImageSourceCreateWithURL((CFURLRef)url, NULL);
  34. CGFloat width = 0, height = 0;
  35. if (imageSourceRef) {
  36. // 获取图像属性
  37. CFDictionaryRef imageProperties = CGImageSourceCopyPropertiesAtIndex(imageSourceRef, 0, NULL);
  38. //以下是对手机32位、64位的处理
  39. if (imageProperties != NULL) {
  40. CFNumberRef widthNumberRef = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelWidth);
  41. #if defined(__LP64__) && __LP64__
  42. if (widthNumberRef != NULL) {
  43. CFNumberGetValue(widthNumberRef, kCFNumberFloat64Type, &width);
  44. }
  45. CFNumberRef heightNumberRef = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelHeight);
  46. if (heightNumberRef != NULL) {
  47. CFNumberGetValue(heightNumberRef, kCFNumberFloat64Type, &height);
  48. }
  49. #else
  50. if (widthNumberRef != NULL) {
  51. CFNumberGetValue(widthNumberRef, kCFNumberFloat32Type, &width);
  52. }
  53. CFNumberRef heightNumberRef = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelHeight);
  54. if (heightNumberRef != NULL) {
  55. CFNumberGetValue(heightNumberRef, kCFNumberFloat32Type, &height);
  56. }
  57. #endif
  58. /***************** 此处解决返回图片宽高相反问题 *****************/
  59. // 图像旋转的方向属性
  60. NSInteger orientation = [(__bridge NSNumber *)CFDictionaryGetValue(imageProperties, kCGImagePropertyOrientation) integerValue];
  61. CGFloat temp = 0;
  62. switch (orientation) { // 如果图像的方向不是正的,则宽高互换
  63. case UIImageOrientationLeft: // 向左逆时针旋转90度
  64. case UIImageOrientationRight: // 向右顺时针旋转90度
  65. case UIImageOrientationLeftMirrored: // 在水平翻转之后向左逆时针旋转90度
  66. case UIImageOrientationRightMirrored: { // 在水平翻转之后向右顺时针旋转90度
  67. temp = width;
  68. width = height;
  69. height = temp;
  70. }
  71. break;
  72. default:
  73. break;
  74. }
  75. /***************** 此处解决返回图片宽高相反问题 *****************/
  76. CFRelease(imageProperties);
  77. }
  78. CFRelease(imageSourceRef);
  79. }
  80. return CGSizeMake(width, height);
  81. }
  82. @end