码迷,mamicode.com
首页 > 其他好文 > 详细

Core Graphics 学习——1 两张图合成为一张图

时间:2014-08-19 20:58:15      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:core graphics   uiimage   

-(UIImage *)MergeTwoImage
{
    UIImage * img =[UIImage imageNamed:@"icon"];
    CGSize sz = img.size;
    UIGraphicsBeginImageContextWithOptions(CGSizeMake(sz.width*2, sz.height), NO, 0);
    [img drawAtPoint:CGPointMake(0, 0)];
    [img drawAtPoint:CGPointMake(sz.width, 0)];
    UIImage *mergeImg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return mergeImg;
}

Core Graphics 学习——1 两张图合成为一张图,布布扣,bubuko.com

Core Graphics 学习——1 两张图合成为一张图

标签:core graphics   uiimage   

原文地址:http://blog.csdn.net/xiaoyuertongxue/article/details/38686519

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