gpt4 book ai didi

javascript - 将 html5canvas 转换为图像后,它不会作为图像插入 html 中

转载 作者:行者123 更新时间:2023-12-02 21:12:21 25 4
gpt4 key购买 nike

我正在尝试将 html5canvas 转换为图像,并希望再次在页面中加载该图像,但它不起作用。

window.onload = function() {

}

function myFunction() {
var v = document.getElementById("mTextArea").value;
document.getElementById("wow").innerHTML = v;

html2canvas(document.getElementById("imagewrap"), {
onrendered: function(canvas) {
canvas.className = "html2canvas";
var image = canvas.toDataURL("image/png");<====
document.getElementById("img_prev").innerHTML = image;<====
},
useCORS: true
});
}

请建议我该怎么做?

最佳答案

canvas.toDataURL将生成图像。要将图像插入 HTML,innerHTML不是正确的方法。您应该将该图像设置为 <img> 的来源标签。假设 img_prev<img>然后标记:

    document.getElementById("img_prev").src= image;

关于javascript - 将 html5canvas 转换为图像后,它不会作为图像插入 html 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61055705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com