我正在开展一个用户执行以下任务的项目。
对于第二部分,我正在尝试使用代码,但它不起作用。
UIGraphicsBeginImageContext(frontImageView.frame.size);
[frontImageView.image drawInRect:CGRectMake(0, 0, frontImageView.frame.size.width, frontImageView.frame.size.height)];
context = UIGraphicsGetCurrentContext();
CGRect theRect = CGRectMake(touchLocation.x, touchLocation.y, eraserWidth, eraserWidth);
CGContextAddRect(context, theRect);
CGContextDrawImage(context, theRect, originalImage.CGImage);
frontImageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
其中originalImage
conatin选择了Image,EraserWIdth是ToolWidth,FrontIMageVIew是UIImageVIEW,其中的图像将是Draw。请检查此代码是否正确因为我的应用程序崩溃了。提前谢谢。