iOS代码实现两张图片合成一个

注意:如果上面的一张尺寸大于底下的一张,最后截取出来的图片就看不见下面一张的内容;


代码如下:

- (UIImage *)addImage:(UIImage *)image1 toImage:(UIImage *)image2
{
    //将底部的一张的大小作为所截取的合成图的尺寸
    UIGraphicsBeginImageContext(image2.size);
    
    // Draw image2,底下的
    [image2 drawInRect:CGRectMake(0, 0, image2.size.width, image2.size.height)];
    
    // Draw image1,上面的,坐标适当的调整
    //[image1 drawInRect:CGRectMake(image2.size.width/2-image2.size.width*0.2/2,image2.size.height/2-image2.size.height*0.2/2, image2.size.width*0.2, image2.size.height*0.2)];
    [image1 drawInRect:CGRectMake(image2.size.width/2-25,image2.size.height/2-25, 50, 50)];
    
    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    return resultingImage;
}





你可能感兴趣的:(两张图片合成一张,ios图片合成)