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

iOS - 图片合成

时间:2014-10-19 18:30:56      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   sp   div   on   log   

 1 - (UIImage *)addImage:(UIImage *)image1 withImage:(UIImage *)image2 rect1:(CGRect)rect1 rect2:(CGRect)rect2 {
 2     CGSize size = CGSizeMake(rect1.size.width+rect2.size.width, rect1.size.height);
 3     
 4     UIGraphicsBeginImageContext(size);
 5     
 6     [image1 drawInRect:rect1];
 7     [image2 drawInRect:rect2];
 8     
 9     UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
10     
11     UIGraphicsEndImageContext();
12     
13     return resultingImage;
14 }

 

iOS - 图片合成

标签:style   blog   color   io   os   sp   div   on   log   

原文地址:http://www.cnblogs.com/mo-shou/p/4035127.html

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