我试图用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
为什么会出现这种错误?为什么图像不能整体显示?