Is it possible to query a HTML Canvas object to get the color at a specific location?

link|improve this question

80% accept rate
feedback

4 Answers

up vote 41 down vote accepted

There's a section about pixel manipulation in the W3C documentation.

Here's an example on how to invert an image:

// Get the CanvasPixelArray from the given coordinates and dimensions.
var imgd = context.getImageData(x, y, width, height);
var pix = imgd.data;

// Loop over each pixel and invert the color.
for (var i = 0, n = pix.length; i < n; i += 4) {
    pix[i  ] = 255 - pix[i  ]; // red
    pix[i+1] = 255 - pix[i+1]; // green
    pix[i+2] = 255 - pix[i+2]; // blue
    // i+3 is alpha (the fourth element)
}

// Draw the ImageData at the given (x,y) coordinates.
context.putImageData(imgd, x, y);
link|improve this answer
I'm getting a security error: imageData = ctx.getImageData(0, 0, width, height); – jepser Oct 30 '11 at 21:59
Ask about that in a separate question, it's completely unrelated. :) – Georg Schölly Oct 31 '11 at 21:06
feedback

Have you tried the getImageData method ?

data = canvas.getImageData(x, y, 1, 1).data;
color = new Color([data[0], data[1], data[2]]);
link|improve this answer
shouldn't this be context.getImageData() and not canvas.getImageData()? – Crashalot Apr 5 at 7:04
@Crashalot depends on what the var "canvas" contains, it could simply be the context of a canvas with a crappy var name. – tbleckert May 3 at 9:33
feedback

Yup, check out getImageData(). Here's an example of breaking captcha with JavaScript using canvas:

http://ejohn.org/blog/ocr-and-neural-nets-in-javascript/

link|improve this answer
feedback

Note that getImageData returns a snapshot. Implications are:

  • Changes will not taking effect until subsequent putImageData
  • getImageData and putImageData calls are relatively slow
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.