添加两个图像并制作一个

时间:2013-08-21 23:46:07

标签: ios objective-c cocoa-touch

我是新编程的IOS应用程序,我遇到了这个问题:我在应用程序中有两个图像,我想在Twitter上发布,但Twitter只接受一张图片上传,所以我想出了这个想法使图像A +图像B只是一个图像。我已经完成了发布和调整图像处理的大小。但是,我需要帮助才能使Image A + Image B成为一个Image。有人可以帮忙吗?谢谢。

enter image description here

1 个答案:

答案 0 :(得分:8)

以下是您可以使用的一些代码......

假设:

  • 您的两张图片已初始化
  • 这两个图像具有相同的尺寸。如果您的图像尺寸不同,则必须自己使用尺寸。

    UIImage *girl1 = INITIALIZE_HERE;
    UIImage *girl2 = INITIALIZE_HERE;
    
    // Get the size of your images (assumed to be the same)
    CGSize size = [girl1 size];
    
    // Create a graphic context that you can draw to. You can change the size of the 
    // graphics context (your 'canvas') by modifying the parameters inside the
    // CGSizeMake function. 
    UIGraphicsBeginImageContextWithOptions(CGSizeMake(size.width*2, size.height), NO, 0);
    
    // Draw the first image to your newly created graphic context
    [girl1 drawAtPoint:CGPointMake(0,0)];
    
    // Draw your second image to your graphic context
    [girl2 drawAtPoint:CGPointMake(size.width,0)];
    
    // Get the new image from the graphic context
    UIImage *theOneImage = UIGraphicsGetImageFromCurrentImageContext();
    
    // Get rid of the graphic context
    UIGraphicsEndImageContext();
    

希望这有帮助!