acerbetti / ACEDrawingView

An open source iOS component to create a drawing app
Apache License 2.0
665 stars 171 forks source link

Draw on image #64

Closed mr-pant closed 8 years ago

mr-pant commented 8 years ago

User will be able to draw on image and extract the modified image.

acerbetti commented 8 years ago

Thank you for taking the time to do a PR. I saw you have some your logic to resize and blend the image in the demo project. I think you could move it in the view itself.

As a suggestion, maybe change the method - (UIImage *)drawings

to something like - (UIImage *)applyDrawToImage:(UIImage *)baseImage

so you can move all your logic from the controller to better reusability

mr-pant commented 8 years ago

I'm on it.