Is it possible to query a HTML Canvas object to get the color at a specific location?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There's a section about pixel manipulation in the W3C documentation. Here's an example on how to invert an image:
|
|||||||
|
|
Have you tried the getImageData method ?
|
|||||||||||
|
|
Yup, check out getImageData(). Here's an example of breaking captcha with JavaScript using canvas: |
|||
|
|
|
Note that getImageData returns a snapshot. Implications are:
|
|||
|
|