vote up 0 vote down star
1

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.

flag

80% accept rate

3 Answers

vote up 0 vote down

"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|flag
vote up 1 vote down

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

link|flag
This does not allow me to put manipulate the image data itself tho, which is what I want to do. – gmiernicki Sep 22 at 21:44
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 at 0:00
vote up 0 vote down

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|flag
I wanted to do this entirely in the browser, not use any server side scripting at all. – gmiernicki Sep 22 at 21:44
Can you give some details, its pretty impossible to do it but there might be alternative solutions. – Cem Kalyoncu Sep 23 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. – gmiernicki Sep 23 at 18:34

Your Answer

Get an OpenID
or

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