Jeehoon Son
Jeehoon Son
I was adding image attachments with NSTextAttachment in my custom textView.(Like below) ` let textAttachment = NSTextAttachment() textAttachment.bounds = CGRect(x: 0, y: (textView.font!.capHeight - image.size.height).rounded() / 2, width: image.size.width, height:...
``` func filterimage(insertImage: UIImage) -> UIImage { let toonFilter = SmoothToonFilter() let testImage = insertImage let pictureInput = PictureInput(image:testImage) let pictureOutput = PictureOutput() pictureOutput.imageAvailableCallback = {image in // Do something...