I'd like to know if there is a way to dynamically modify/access the data contained in html images just as if they were an html5 canvas element. With canvas, you can in javascript access the raw pixel data with getImageData() and putImageData(), but I have thus far been not able to figure out how to do this with images.

link|improve this question

80% accept rate
feedback

5 Answers

You could draw the image to a canvas element with drawImage(), and then get the pixel data from the canvas.

link|improve this answer
This does not allow me to put manipulate the image data itself tho, which is what I want to do. – Greg Miernicki Sep 22 '09 at 21:44
1  
Once the image has been copied to the canvas element, you can manipulate it any way you would normally manipulate canvas pixel data. – Alex Barrett Oct 13 '09 at 0:00
feedback
// 1) Create a canvas, either on the page or simply in code
var canvas = document.createElement('canvas');
var ctx    = canvas.getContext('2d');

// 2) Copy your image data into the canvas
var myImgElement = document.getElementById('foo');
ctx.drawImage( myImgElement, 0, 0 );

// 3) Read your image data
var w = myImgElement.width, h=myImgElement.height;
var imgdata = ctx.getImageData(0,0,w,h);
var rgba = imgdata.data;

// 4) Read or manipulate the rgba as you wish
for (var px=0,ct=w*h*4;px<ct;px+=4){
  var r = rgba[px  ];
  var g = rgba[px+1];
  var b = rgba[px+2];
  var a = rgba[px+3];
}

// 5) Update the context with newly-modified data
ctx.putImageData(imgdata,0,0);

// 6) Draw the image data elsewhere, if you wish
someOtherContext.drawImage( ctx.canvas, 0, 0 );

Note that step 2 can also be brought in from an image loaded directly into script, not on the page:

// 2b) Load an image from which to get data
var img = new Image;
img.onload = function(){
  ctx.drawImage( img, 0, 0 );
  // ...and then steps 3 and on
};
img.src = "/images/foo.png"; // set this *after* onload
link|improve this answer
your code does not work, someOtherContext.drawImage(ctx,0,0); keeps throwing "Type error" because first attribute must be image, not context (chrome 7, firefox 3.6) – dvh Nov 30 '10 at 22:05
1  
If one wants to iterate over all pixels in the image, step 4 should be ...ct=w*h*4... since there are four values per pixel. – pettys Mar 7 at 14:17
@dvh I think it was intended to be "canvas" instead of ctx. drawImage can take either an image or a canvas. – pettys Mar 7 at 14:27
@pettys Thanks for the proofreading. Fixed :) – Phrogz Mar 7 at 19:00
feedback

Im not sure if it is possible, but you can try requesting pixel information from PHP, if GD library it will be an easy task, but surely will be slower. Since you didnt specified application so I will suggest checking SVG for this task if they can be vector images than you will be able to query or modify the image.

link|improve this answer
I wanted to do this entirely in the browser, not use any server side scripting at all. – Greg Miernicki Sep 22 '09 at 21:44
Can you give some details, its pretty impossible to do it but there might be alternative solutions. – Cem Kalyoncu Sep 23 '09 at 7:23
if i were to actually implement this in some software, i would probably update the DOM node of the image. However, my question was aimed more at the level of "is this even possible?" to learn more about html itself. – Greg Miernicki Sep 23 '09 at 18:34
feedback

"The getImageData(sx, sy, sw, sh) method must return an ImageData object representing the underlying pixel data for the area of the canvas denoted by the rectangle whose corners are the four points (sx, sy), (sx+sw, sy), (sx+sw, sy+sh), (sx, sy+sh), in canvas coordinate space units. Pixels outside the canvas must be returned as transparent black. Pixels must be returned as non-premultiplied alpha values."

^^it's quotes from http://dev.w3.org/html5/spec/the-canvas-element.html#dom-context-2d-getimagedata so it's must return but sometimes it's not, and why not make "new image" to have content ImageData, so to copy CanvasPixelArray to another ImageData without rendering on canvas ?!

link|improve this answer
feedback

you first want to draw a pic on the canvas and then get the imageData from the canvas ,it is a wrong way,because the js think it is a "Cross-domain access",but the getIamgeData method don't allow the "Cross-domain access" to an image.you can hava a try by put the in the root place and access it by "localhost" .

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.