码迷,mamicode.com
首页 > 移动开发 > 详细

ios三张图片组合一张

时间:2016-06-02 11:17:12      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:

- (UIImage *)addImage:(UIImage *)image1 toImage:(UIImage *)image2 {

    UIGraphicsBeginImageContext(image1.size);

    

    // Draw image1

    [image1 drawInRect:CGRectMake(0, 0, 40, 40)];

    

    // Draw image2

    [image2 drawInRect:CGRectMake(40, 0, 40, 40)];

    

    // Draw image2

    [image2 drawInRect:CGRectMake(00, 40, 80, 40)];

    

    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();

    

    UIGraphicsEndImageContext();

    

    return resultingImage;

}

ios三张图片组合一张

标签:

原文地址:http://www.cnblogs.com/lihaibo-Leao/p/5552213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!