我正在使用以下代码合并我的图像。
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
获取合并的图像大小。任何帮助都会非常感激。