【iOS Tips】合并 UIImage

如何 合并两个UIImage 生产一个UIImage:

1、准备两个UIImage

UIImage * image1 = [UIImage imageNamed:@"1.jpg"];
UIImage * image2 = [UIImage imageNamed:@"2.jpg"];

2、指定合并后UIImage的大小

CGSize  size = CGSizeMake(400, 200);

3、创建一个基于位图的上下文UIGraphicsBeginImageContext(size),并将其设置为当前上下文(context)

//上下文
UIGraphicsBeginImageContext(size);

4、绘制图形,给定每个图片绘制的frame

[image1 drawInRect:CGRectMake(0, 0, 100,200)];
[image2 drawInRect:CGRectMake(100, 0, 100, 200)];

5、通过此上下文生产新的UIImage

UIImage * togetherImage = UIGraphicsGetImageFromCurrentImageContext();
//结束上下文
UIGraphicsEndImageContext();

6、此时可以将图像展示出来啦

UIImageView * imgV = [[UIImageView alloc]initWithImage:togetherImage];
imgV.center = CGPointMake(SCREEN_SIZE.width/2.0, SCREEN_SIZE.height/2.0);
[self.view addSubview:imgV];

效果如下:

171810_ypTO_2279344.png

有时间实现一下微信群多头像吧。。

转载于:https://my.oschina.net/Misayalvyuan/blog/711298

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值