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.
|
feedback
|
|
You could draw the image to a canvas element with drawImage(), and then get the pixel data from the canvas. | |||||||
feedback
|
Note that step 2 can also be brought in from an image loaded directly into script, not on the page:
| |||||||||||
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. | |||||||
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 ?! | |||
|
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" . | |||
|
feedback
|