I would like a user to be able to edit an image that I serve, using Javascript, and then upload that image back into App Engine.
- Original image is stored as Blob in DataStore.
- Image is served (currently) just using
- Currently user can only view the image, but i want user to be able to edit the images (adding text and lines at most, no complex transformation needed).
- User can save the image back into the web application.
What is the quickest way to do this?
Will it be easy to integrate with 3rd party javascript image libraries (which has the editing tools already)?