ios对图像进行压缩源码

ios对图像进行压缩源码,第1张

如下的资料是关于ios对图像进行压缩的内容。

{
CGSize imageSize = image.size;
CGFloat width = imageSize.width;
CGFloat height = imageSize.height;

if (width <= newSize.width && height <= newSize.height){
return image;
}

if (width == 0 || height == 0){
return image;
}

CGFloat widthFactor = newSize.width / width;
CGFloat heightFactor = newSize.height / height;
CGFloat scaleFactor = (widthFactor

CGSize targetSize = CGSizeMake(scaledWidth,scaledHeight);

UIGraphicsBeginImageContext(targetSize);
[image drawInRect:CGRectMake(0,0,scaledWidth,scaledHeight)];
UIGraphicsEndImageContext();
return newImage;

}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/994435.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存