I would like the user to be able to edit the image that I serve using Javascript, and then upload that image back to App Engine.
- The original image is saved as a Blob in the DataStore.
- Image is being served (currently) only with
- Currently, the user can only view the image, but I want the user to be able to edit images (adding text and lines no more, without the need for complex conversion).
- The user can save the image back to the web application.
What is the fastest way to do this?
Will it be easy to integrate with third-party javascript image libraries (which already have editing tools)?
source
share