美文网首页
返回所需要修改尺寸的图片

返回所需要修改尺寸的图片

作者: GOOGxu | 来源:发表于2017-03-30 10:43 被阅读0次

-(UIImage*) OriginImage:(UIImage *)image scaleToSize:(CGSize)size

{

UIGraphicsBeginImageContext(size); //size 为CGSize类型,即你所需要的图片尺寸

[image drawInRect:CGRectMake(0, 0, size.width, size.height)];

UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return scaledImage; //返回的就是已经改变的图片

}

相关文章

网友评论

      本文标题:返回所需要修改尺寸的图片

      本文链接:https://www.haomeiwen.com/subject/dspuottx.html