我无法在GWT中缩放HTML画布上的图像大小。我可以使用这个成功渲染图像:
ImageData id = context.createImageData(width, height);
-- do some image manipulation here...
context.putImageData(id, 0, 0);
这很有效。但是我想缩放图像的大小,所以我将它添加到下一行:
context.scale(scale, scale);
但图像没有任何反应,它不会缩放。我错过了什么?
答案 0 :(得分:1)