如何减少iPhone中的图像大小

时间:2010-12-23 09:19:37

标签: iphone

我刚接触iphone,目前我的问题是

我在图像视图中显示了6张图像在imageview中没有显示图像我认为图像视图是大尺寸的

所以请给我发送此imageview的代码。

提前感谢你。

1 个答案:

答案 0 :(得分:0)

您可以将其用于图像大小调整:

- (UIImage *)rescaleImageToSize:(CGSize)size {
    CGRect rect = CGRectMake(0.0, 0.0, size.width, size.height);
    UIGraphicsBeginImageContext(rect.size);
    [self drawInRect:rect];  // scales image to rect
    UIImage *resImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return resImage;
}