Tag: 擦除

擦除时图像变得模糊和缩小

我正在使用擦除图像的function,我的代码如下所示。 你可以看到这里的video 。 这里current_sticker_img是我的Imageview 注意: 我也使用Pan Gesture来缩放图像 //MARK: Eraser touch event override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { if btn_eraser.isSelected == true || btn_repaint.isSelected == true{ let touch : UITouch = touches.first! lastpoint = touch.location(in: current_sticker_img) } } override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) { if btn_eraser.isSelected == true || btn_repaint.isSelected […]