Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 60 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);
share|improve this answer
I'm getting a security error: imageData = ctx.getImageData(0, 0, width, height); – jepser Oct 30 '11 at 21:59
3  
Ask about that in a separate question, it's completely unrelated. :) – Georg Schölly Oct 31 '11 at 21:06

Have you tried the getImageData method ?

data = canvas.getImageData(x, y, 1, 1).data;
color = new Color([data[0], data[1], data[2]]);
share|improve this answer
1  
shouldn't this be context.getImageData() and not canvas.getImageData()? – Crashalot Apr 5 '12 at 7:04
1  
@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 '12 at 9:33
Wow, very elegant! I thought about searching for the point in the entire context, but this is much smarter. – Ramin Jan 8 at 21:24

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/

share|improve this answer

Note that getImageData returns a snapshot. Implications are:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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