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 out the Dart Language and HTML5 Canvas element, but I'm stuck with one problem. I don't know how to load an image in Dart. I can get CanvasRenderingContext2D and with this I can call fillText() and fillRect() and everything works, but I am trying to figure out how to load an Image and draw with drawImage.

share|improve this question

1 Answer

up vote 5 down vote accepted

Create and load the image

ImageElement image = new ImageElement("my_image.png");
image.on.load.add((e) {
    // Draw once the image is loaded
});

Draw the above image on the canvas after it is loaded

context.drawImage(image, x, y, width, height);
share|improve this answer
Oh, Thanks you! :) – narahd Jul 23 '12 at 17:00
Hi, I'm new to dart and when I try the image.on.load.add function I get an error stating that "load" is not a member of Events. Also the code hinting isn't very helpful with this. I'm using Dart Editor version 0.4.2_r20259 and Dart SDK version 0.4.2.8_r20259. – Hans Vn Mar 22 at 15:24
1  
Ok, I found out why: the dartlang core had an update... Dart News & Updates. Now "image.on.load.add" should be written as "image.onLoad.listen". – Hans Vn Mar 22 at 19:03
Since M1 of Dart was released the syntax has changed add "src:" before the filename ( new ImageElement(src:"my_image.png"); ) or this will cause a runtime error. – daftspaniel May 6 at 18:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.