iphone图片缩放

CGSize size = CGSizeMake(width, height);

UIGraphicsBeginImageContext(size);

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

[img drawInRect:imageRect];

imgView.image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

你可能感兴趣的:(iphone图片缩放)