Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to draw an image on a canvas with html5/javascript. In a browser it opens ok, but in the webview an emulator QVGA (320x240) it opens wrong.

Here is my code:

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

Here is the print screen of the emulator

Why this error happens? Why the image does not display whole?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.