make sure there are no captures in the call - in your case `image` is 
implicitly captured. instead you would want to pass it as a `var Image`. also 
the return type should be void as you are not actually returning an `Image` 
from that procedure.

Reply via email to