iOS获得UIImage内存大小
我想获得UIImage对象真正的内存大小。 有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
哪一个是对的?
最后一个(s3)是正确的:
- s1是保存到文件时的.png图像的大小
- s2是保存为最佳质量文件时的.jpg图像的大小
- 为什么NSDateFormatter在巴西时区为19/10/2014返回null?
- 应用程序商店 – 方法Swizzling合法性
- HTML5video音量
- 在运行时更改iOS模拟器的当前区域设置
- 旋转UIImage自定义程度
- 使用Xcode连接Team Foundation Server(TFS)
- embedded在UIPageViewController(ScrollStyle)中的UITableView不能被挖掘 – didSelectRowAtIndexPath没有被触发
- 当html5video结束时触发.changePage(),iOS
- EXC_BAD_ACCESS使用在8.3设备上运行的gmaps sdk 1.9.0,Xcode 6.4