`

iPhone快速参考:从一个图片截取部分区域生成新的小图

阅读更多

 

    UIImage *image = [[UIImage alloc] initWithData:data];//大图

    CGRect imageRect = CGRectMake(0.00.0, image.size.width, image.size.height);

 

    CGSize itemSize = CGSizeMake(w,h);

 

    UIGraphicsBeginImageContext(itemSize);

    [image drawInRect:imageRect];

    UIImage *smallimage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics