UIImageJPEGRepresentation和UIImagePNGRepresentation

Posted lovenjoe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UIImageJPEGRepresentation和UIImagePNGRepresentation相关的知识,希望对你有一定的参考价值。

在Iphone上有两种读取图片数据的简单方法: UIImageJPEGRepresentation和UIImagePNGRepresentation. 

UIImageJPEGRepresentation函数需要两个参数:图片的引用和压缩系数.而UIImagePNGRepresentation只需要图片引用作为参数.通过在实际使用过程中,比较发现: UIImagePNGRepresentation(UIImage* image) 要比UIImageJPEGRepresentation(UIImage* image, 1.0) 返回的图片数据量大很多.譬如,同样是读取摄像头拍摄的同样景色的照片, UIImagePNGRepresentation()返回的数据量大小为199K ,而 UIImageJPEGRepresentation(UIImage* image, 1.0)返回的数据量大小只为140KB,比前者少了50多KB.如果对图片的清晰度要求不高,还可以通过设置 UIImageJPEGRepresentation函数的第二个参数,大幅度降低图片数据量.譬如,刚才拍摄的图片, 通过调用UIImageJPEGRepresentation(UIImage* image, 1.0)读取数据时,返回的数据大小为140KB,但更改压缩系数后,通过调用UIImageJPEGRepresentation(UIImage* image, 0.5)读取数据时,返回的数据大小只有11KB多,大大压缩了图片的数据量 ,而且从视角角度看,图片的质量并没有明显的降低.因此,在读取图片数据内容时,建议优先使用UIImageJPEGRepresentation,并可根据自己的实际使用场景,设置压缩系数,进一步降低图片数据量大小.

以上是关于UIImageJPEGRepresentation和UIImagePNGRepresentation的主要内容,如果未能解决你的问题,请参考以下文章

UIImageJPEGRepresentation 使用大量内存(Swift 3.0)

数据到 UIImage 到 UIImageJPEGRepresentation 相等失败

使用 UIImageJPEGRepresentation 保存图像并用作 UIImage

为啥使用 UIImageJPEGRepresentation 和通过 localpath 获取图像之间的相同图像的数据大小/长度不同

使用 UIImageJPEGRepresentation 时,多少数字保留全分辨率?

UIImageJPEGRepresentation 已被实例方法 UIImage.jpegData(compressionQuality:) 替换