Is it possible to query a HTML Canvas object to get the color at a specific location?
|
feedback
|
|
There's a section about pixel manipulation in the W3C documentation. Here's an example on how to invert an image:
| |||||
feedback
|
|
Have you tried the getImageData method ?
| |||||
feedback
|
|
Yup, check out getImageData(). Here's an example of breaking captcha with JavaScript using canvas: | |||
|
feedback
|
|
Note that getImageData returns a snapshot. Implications are:
| |||
|
feedback
|