| javascript Programming Glossary: getpixelHow can I perform flood fill with HTML Canvas? http://stackoverflow.com/questions/2106995/how-can-i-perform-flood-fill-with-html-canvas  so there may be edge cases where it doesn't work. function getPixel pixelData x y if x 0 y 0 x pixelData.width y pixelData.height.. done for var i 0 i canvas.width i done i  var targetColor getPixel pixelData x y delta delta stack x y done x y true while current.. while current stack.pop cx current 0 cy current 1 if diff getPixel pixelData cx cy targetColor delta  setPixel pixelData cx cy.. 
 getPixel from HTML Canvas? http://stackoverflow.com/questions/667045/getpixel-from-html-canvas  from HTML Canvas  Is it possible to query a HTML Canvas object.. 
 |