首页 > 代码库 > iOS 合并多张图片的方法

iOS 合并多张图片的方法

直奔主题,在程序中合并多张图片的一种方法,之前有试过 

UIGraphicsBeginImageContextWithOptions(_targetView.frame.size, YES, 0.0);

//图片1

[_targetView.image drawInRect:_targetView.frame];

//图片2

[_sourceV.image drawInRect:_sourceV.frame]

UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return img;

但是这样做得到的图片会产生偏移。

正确的做法是将多张图片放置到一个view中去显示,然后

 [self.view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext();     UIGraphicsEndImageContext();

直接渲染view.layer,合并前与合并后的样子就是一样的,不会有图片的偏移。

iOS 合并多张图片的方法