Is it possible to dynamically create and edit images at a pixel from JavaScript (client-side)? Or should it be done using a system language, such as PHP?
My use case is as follows:
- A user opens a web page and loads a locally stored image.
- A preview image is displayed.
- The user can change the image using a set of sliders (operations at the pixel level).
- In the end, he can upload the image to his local hard drive.
When searching the Internet, I just found messages about using the IE filtering method, but I didn't find anything about image editing features in JavaScript.
source
share