vote up 0 vote down star

Javascript CANVAS is amazing: it allows us to draw something like lines, polygons on the browser screen.

I wonder how does Javascript CANVAS works. For example to draw a line, does it use a series aligned tiny images to simulate the line or some other approach?

Thanks in advance.

flag

4 Answers

vote up 0 vote down

Surely that's implementation-specific to the JavaScript engine browser in question?

link|flag
I think it's actually native to the browser, no the JS engine. For example, I don't think V8 supports Canvas, it's Chrome that does the rendering work. – slacy Apr 18 at 3:56
Duh, I meant browser. Something went badly wrong between brain and keyboard there... – Rob Apr 18 at 6:23
vote up 5 vote down

Any reasonable implementer would just use a bitmap (stored internally in the browser), and draw to that using OS native drawing commands.

Why does it matter? It's not at all related to HTML+CSS, if that's what you're wondering.

More detail, for detail's sake:

When the browser's HTML parser sees a canvas element (of a given width & height) it needs to allocate an onscreen pixmap to cover that area. It either does this manually (i.e. malloc()) or it calls into some OS native drawing API to create a surface to draw on. The OS native API could be Windows, Gtk, Kde, Qt, or any other drawing library that the implementer of the browser chose. Also, it's highly dependent on the operating system. Internet Explorer probably calls into some Windows native library (i.e. DirectX or WinFooBarMethod()).

Once the drawing surface is created, it's made accessible to the internal guts of the JavaScript interpreter, likely via a pointer or handle to the constructed drawing surface. Then, when the JS interpreter sees an invocation of one of the canvas methods, it turns this into a call to the appropriate OS native command.

So, using the Windows 3.1 style metaphor:

"new canvas(width, height)" = "WinCreatePixmap(width, height)" 
"canvas.setPixel(x,y,color)" = "WinSetPixel(x,y,color)"

And using a manually managed pixmap:

"new canvas(width, height)" = "malloc(width * height * sizeof(Pixel))"
"canvas.setPixel(x,y,color)" = "canvas[x][y] = color;"

Again, it shouldn't matter to the JavaScript developer how these methods are implemented. The only people who need to care are the ones who are writing HTML5 compliant web browsers with canvas support.

link|flag
On a second thought, it seems impossible for javascript to call browser's OS native drawing methods. – sc85 Apr 18 at 4:42
5  
JavaScript can't call OS drawing commands. The browser interprets the JavaScript/CSS/HTML and it calls the operating system's native drawing commands to draw what is necessary. – Steve Harrison Apr 18 at 6:33
This makes more sense. But which method is actually called when I call Canvas drawline()? In other words, how a single black pixel is actually rendered on the browser by Javascript call? – sc85 Apr 18 at 12:24
Again, why does it matter? The actual method name could be internal to the browser (i.e. manually setting pixels in a pixmap to do the rendering) or it could end up calling the OS commands, WinDrawLine() or whatever the implementer of the browser chose. (i.e. Windows, DirectX, Qt, GTK, etc.) – slacy Apr 20 at 5:29
vote up 0 vote down

If you're interested in how line drawing works, check out Bresenham's Line Drawing Algorithm.

link|flag
Thank you, but I don't care the algorithm to draw a line or something. Just wonder how a single pixel is actually rendered on the browser. – sc85 Apr 18 at 4:16
@sc85: The browser is doing the work. It has the context of a bitmap. It can either draw the line or it can call an OS call to draw the line. It doesn't matter. Drawing an antialiased line is trivial. – Nosredna Jul 20 at 20:10
vote up 0 vote down

You're thinking too much, it's simple:

A canvas is like an image that can be drawn on to the browser.

link|flag
I think you're thinking of SVG. – tj111 Jul 20 at 20:22

Your Answer

Get an OpenID
or

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