我正在尝试获取图像来填满我的画布。这是我正在尝试的代码:
var blueprint_background = new Image();
blueprint_background.src = 'images/blueprint_background.png';
var pattern = context.createPattern(blueprint_background, "repeat");
context.fillStyle = pattern;
context.fill();
问题是什么都没有出现。我能够做基本的 context.fillRect(..) 示例,但这给我带来了麻烦。
谢谢。