我想在swift中构建一个iOS应用程序来做类似绘画的应用程序,但是我在移动手指的路径上绘制并创建马赛克。我有两个imageView photoView
和tempImageView
。 PhotoView加载照片和tempImageView进行绘制。这是一些代码
func drawLineFrom(fromPoint: CGPoint, toPoint: CGPoint) {
UIGraphicsBeginImageContext(photoView.frame.size)
let context = UIGraphicsGetCurrentContext()
tempImageView.image?.drawInRect(CGRect(x: 0, y: 0, width: photoView.frame.size.width, height: photoView.frame.size.height))
CGContextMoveToPoint(context, fromPoint.x, fromPoint.y)
CGContextAddLineToPoint(context, toPoint.x, toPoint.y)
CGContextSetLineCap(context, CGLineCap.Round)
CGContextSetLineWidth(context, brushWidth)
//next line will fill the line with black color but how to fill with mosaic?
CGContextSetRGBStrokeColor(context, 0, 0, 0, 1.0)
CGContextSetBlendMode(context, CGBlendMode.Normal)
CGContextStrokePath(context)
tempImageView.image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
}
我知道下一个代码可以为照片添加过滤器,但是如何将它放在路径或线上?
var filter = CIFilter(name: "CIPixellate")
let inputImage = CIImage(image: originalImage)
filter.setValue(inputImage, forKey: kCIInputImageKey)
答案 0 :(得分:0)
您可以在绘图代码中绘制蒙版图像,并使用蒙版复合像素化图像和原始图像。但为了获得良好的性能,您应该使用共享位图上下文
如果从位图上下文创建CGImage,则CGImage将创建没有来自上下文的复制数据。 CGBitmapContextCreateImage documentation。
之后,您可以使用CIBlendWithAlphaMask或CIBlendWithMask过滤器来获取结果图片。
我认为这是一个很好的方法,但结果你会有裁剪的马赛克位。