I use the main image and I apply the Sipilter sepia signal to my image. I run the filter once in viewDidLoad, and then immediately call another function that adds the filter again. For some reason, when I try to access the output image, the application crashes and says that the output image is zero. Does anyone know why this is happening?
thanks
import UIKit class ViewController: UIViewController { @IBOutlet weak var myimage: UIImageView! override func viewDidLoad() { super.viewDidLoad()
ios swift core-image cifilter
Sam kirkiles
source share