I am creating a "cartoonizer" application, which takes an image as an input and modifies it so as to format it in comics style.
At the moment, the original image is stored in a UIImageView
, and I access to it by doing:
imageView.image
I was wondering whether it is possible to position an object on the image imageView.image
(like a balloon) and then store the image with the object on it, like if it was originally part of the image content.
Thank you in advance.