我想合并两个图像,我的 BaseImages 大小为 1280*1920,然后我使用方法转换为 1 个图像,但新图像大小将为 320*480。我想要它的原始像素和大小
我使用了这个代码:
// ImageContainView - UIView that Contains 2 UIImageView. View size :- 320*480
UIImage *temp;
UIGraphicsBeginImageContext(imageContainView.bounds.size);
[imageContainView.layer renderInContext:UIGraphicsGetCurrentContext()];
temp = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();