Is it possible to dynamically create and modify images on a per pixel level in JavaScript (on client side)? Or has this to be done with server based languaged, such as PHP?
My use case is as follows:
- The user opens webpage and loads locally stored image
- A preview of the image is displayed
- The user can modify the image with a set of sliders (pixel level operations)
- In the end he can download the image to his local HDD
When searching in the web I just found posts about using IE's filtering method, but didn't find anything about image editing functions in JavaScript.