我需要将图像绘制到从 .svg 获得的画布中。我目前正在使用以下代码:
active_toolbutton = query("#${event.target.id}").clone(false);
active_toolbutton.width = 100;
active_toolbutton.height = 100;
context.drawImageScaled(active_toolbutton, placeX, placeY,
active_toolbutton.width, active_toolbutton.height);
这适用于 Chrome,但不适用于 Firefox,有没有更好的方法?