1
我很難在GWT中的HTML畫布上縮放圖像的大小。我可以使用此成功呈現圖像:在GWT中縮放畫布圖像
ImageData id = context.createImageData(width, height);
-- do some image manipulation here...
context.putImageData(id, 0, 0);
這很好。但後來我想縮放圖像的大小,所以我加這非常下一行:
context.scale(scale, scale);
但沒有任何反應的形象,它不適合。我錯過了什麼?
您能總結一下到幾個基本部分? – aez 2012-02-25 16:04:11