开发者

Scaling the image -- Quality check

开发者 https://www.devze.com 2023-02-21 22:15 出处:网络
Does scaling the image using: image=[UIImage imageWithCGIm开发者_开发问答age:[image CGImage] scale:2.0 orientation:UIImageOrientationUp]; reduces the image quality?If you mean something like compressi

Does scaling the image using: image=[UIImage imageWithCGIm开发者_开发问答age:[image CGImage] scale:2.0 orientation:UIImageOrientationUp]; reduces the image quality?


If you mean something like compression artefacts then no, cause those are added when it comes to saving to disc in a specific format like JPG.

There is also a yes, because you double the dimensions of the image which will interpolate the pixels that never have been there, this will always look blurry starting at a certain point.

0

精彩评论

暂无评论...
验证码 换一张
取 消