现在的位置: 首页 > 综合 > 正文

iphone图片缩放

2018年07月28日 ⁄ 综合 ⁄ 共 227字 ⁄ 字号 评论关闭
CGSize size = CGSizeMake(width, height);

UIGraphicsBeginImageContext(size);

CGRect imageRect = CGRectMake(0, 0, width, height);

[img drawInRect:imageRect];

imgView.image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

抱歉!评论已关闭.