需要合并的图像大小与iPhone 5相机胶卷图像大小相同

时间:2013-06-27 10:23:56

标签: iphone ios objective-c

我正在使用以下代码合并我的图像。

CGSize myView = CGSizeMake(310.0, 310.0);
UIGraphicsBeginImageContextWithOptions(newSize,YES,2.0f);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetInterpolationQuality(context, kCGInterpolationHigh);

    [self.myView.layer renderInContext:context];
    [self.myView drawRect:self.myView.frame];

    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext(); 

myView视图有两个图像和一个textView。我得到的合并图像的大小是620x620。但实际照片尺寸为960x1280 (当你用iPod 5拍照时)。所以我需要使用960x1280获取合并的图像大小。任何帮助都会非常感激。

0 个答案:

没有答案