I would like to know if there is any way to create a new Image from ImageData, which was previously obtained from a canvas element.
I’ve searched for a solution, but they all seem to be drawing the result to a canvas.
I need a way to convert an ImageData object to an Image directly, if it’s possible.
Advertisement
Answer
You can use toDataURL method in Canvas. It makes a image data as Data URI.
JavaScript
x
11
11
1
var canvas = document.createElement("canvas");
2
canvas.width = 100;
3
canvas.height = 100;
4
var ctx = canvas.getContext("2d");
5
ctx.fillStyle = "red";
6
ctx.fillRect(0, 0, 100, 100);
7
8
var img = document.createElement("img");
9
img.src = canvas.toDataURL("image/png");
10
document.body.appendChild(img);
11
If you want to know user’s browser supports Data URI Scheme, You can use this function.
JavaScript
1
13
13
1
function useSafeDataURI(success, fail) {
2
var img = document.createElement("img");
3
4
img.onerror = function () {
5
fail();
6
};
7
img.onload = function () {
8
success();
9
};
10
11
img.src = "data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="; // insert a dot image contains 1px.
12
}
13