大家好!
是否可以使用 JavaScript 创建图像然后在其上渲染形状,然后将其绘制到游戏画布上?
无需使用 dataurl、url 或 src,就可以了!
var ctx = document.getElementById("canvas").getContext("2d");
var img = new Image();
// TODO: Draw stuff to the image img
function game() {
window.requestAnimationFrame(game);
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
ctx.drawImage(img, 0, 0, 256, 256);
}
window.requestAnimationFrame(game);
慕沐林林
相关分类