All the iOS drawing information I'm finding is related to how to display things in a view. Specifically layering different images, rects, or paths in a view to be seen on screen. I'm having trouble finding information as to how I can actually manipulate a UIImage itself.
Specifically, I'm looking to open an image file as a UIImage (already know how to do this), draw a line in that image, and then save the new UIImage to a file (already know how to do this as well). I would assume there would be a fairly simple way to do this, but every solution I find seems to be going into a complex solution which seems like overkill for what I assume would be a minor task. How can I go about doing this simply? Or are the much more complex solutions the necessary way?
I'm guessing something similar to this has been answered before, but my lack of knowledge in the area seems to be making it difficult to properly search for and find these answers.