我想在画布上绘制使用 HTML5 文件 API 打开的图像。
在该handleFiles(e)
方法中,我可以使用 访问文件,e.target.files[0]
但无法直接使用drawImage
. 如何从 HTML5 画布上的 File API 绘制图像?
这是我使用的代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<script>
window.onload = function() {
var input = document.getElementById('input');
input.addEventListener('change', handleFiles);
}
function handleFiles(e) {
var ctx = document.getElementById('canvas').getContext('2d');
ctx.drawImage(e.target.files[0], 20,20);
alert('the image is drawn');
}
</script>
</head>
<body>
<h1>Test</h1>
<input type="file" id="input"/>
<canvas width="400" height="300" id="canvas"/>
</body>
</html>