我的应用程序允许用户使用相机覆盖(工作部分)拍照。然后他们可以保存图像、共享图像等等。我有一种方法可以将来自图像选择器的 UIImage 与 UIView 叠加层合并。
它停止与 iOS 7 一起工作!我无法理解为什么...
- (void)saveUserImageWithOverlay: (UIView*)overlay
{
UIImage *image = self.userImage;
CGSize outputImageSize = [[UIScreen mainScreen] bounds].size;
outputImageSize.height -= MENU_BAR_UI_OFFSET;
CGSize userPhotoImageSize = [[UIScreen mainScreen] bounds].size;
userPhotoImageSize.height = (image.size.height * userPhotoImageSize.width) / image.size.width;
if (NULL != UIGraphicsBeginImageContextWithOptions)
{
UIGraphicsBeginImageContextWithOptions(outputImageSize, NO, 0);
}
else
{
UIGraphicsBeginImageContext(outputImageSize);
}
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetAlpha(context, 0.0);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 0.0);
CGContextAddRect(context, CGRectMake(0.0, 0.0, outputImageSize.width, outputImageSize.height));
CGContextDrawPath(context, kCGPathFill);
[image drawInRect:CGRectMake(2.0,
((outputImageSize.height - userPhotoImageSize.height) / 2.0) +2.0,
userPhotoImageSize.width -4.0,
userPhotoImageSize.height -4.0)];
[self renderView:overlay inContext:context];
UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
self.editedImage = screenshot;
}
生成的图像仅包含照片(没有叠加!)。为什么?!?我尝试只渲染叠加层。有用。我尝试删除黑色矩形背景。有用。
为什么黑色矩形隐藏了叠加层?