我有以下代码:
function createImage(source) {
var pastedImage = new Image();
pastedImage.onload = function() {
document.write('<br><br><br>Image: <img src="'+pastedImage.src+'" height="700" width="700"/>');
}
pastedImage.src = source;
}
在这里,我通过我在 document.write 中编写的 html 图像标签显示图像,并为图像提供适当的高度和宽度。
我的问题是可以将图像显示到画布而不是 html img 标签中。这样我就可以根据需要拖动和裁剪该图像。
但是如何在画布中显示它?
此外,我想使用 PHP 实现保存该图像,但现在让我知道以前的问题。
提前致谢。