iOS获得UIImage内存大小

时间:2014-08-25 10:32:37

标签: ios objective-c uiimage

我想获得UIImage Object真正的内存大小。 有3种方法

NSUInteger s1 = UIImagePNGRepresentation(thumbImage).length;
NSUInteger s2 = UIImageJPEGRepresentation(thumbImage, 1).length;
NSUInteger s3  = CGImageGetHeight(thumbImage.CGImage) * CGImageGetBytesPerRow(thumbImage.CGImage);
NSLog(@"s1:%u",s1);
NSLog(@"s2:%u",s2);
NSLog(@"s3:%u",s3);

和结果

S1:62734

S2:175939

S3:578816

哪一个是对的?

1 个答案:

答案 0 :(得分:5)

最后一个(第3个)是正确的:

  • s1是保存到文件时.png图像的大小
  • s2是保存到质量最佳的文件时.jpg图像的大小