webview android上的drawImage html5 / javascript

时间:2012-09-17 21:31:25

标签: javascript android html5 android-webview

我试图用html5 / javascript在画布上绘制图像。在浏览器中,它打开正常,但在webview中,模拟器QVGA(320x240)打开错误。

这是我的代码:

img.src = 'bobs.jpg';  
  img.onload = function() {
    ctx.drawImage(img,0,0, img.width, img.height);
} 

Here is the print screen of the emulator

为什么会出现这种错误?为什么图像不能整体显示?

0 个答案:

没有答案