up vote 5 down vote favorite
5
share [g+] share [fb]

I need to learn about graphics in javascript. Can someone recommend good tutorial material?

In particular I'd like to mix graphics and formatted text in layers, if that helps.

Update: Eugene asks a good question, but the answer is really "yes." I don't know much about graphics in js from any point of view. I'm particularly unclear on the decision among raw graphics formats.

My immediate need is that I'm building a Ruby on Rails app with heavy 2D line art that's generated on the fly; I'd like to pass JSON to a client-side app that draws the results. But I also want to learn the topic thoroughly, not just hack a particular library.

link|improve this question

feedback

9 Answers

up vote 11 down vote accepted

It really depends on what you want to do:

  • 2D vs. 3D.
  • Vector vs. raster graphics.
  • Raw native graphics (SVG, VML, Canvas) vs. portable libraries.
  • Raw native graphics vs. 3rd-party plugins (Flash, Silverlight).

Personally I prefer (and work with) portable vector graphics. To reduce the repetition here is my answer on Are there any good Javascript graphics libraries?. For example, if you interested in 2D vector graphics, take a look at Dojo GFX, and go over docs, demos, and tests.

UPDATE: Charlie has updated his question, so I am updating my answer as well.

Major design decisions come from the availability of different means to do the graphics.

Native 2D graphics:

  • SVG is really mature vector graphics format hailing from 1998. It uses special DOM nodes to describe shapes and their visual attributes. 10 years down the road it is mostly usable and mostly portable. Supported natively by major browsers: Firefox, Safari, Opera, Chrome, and even Safari for iPhone. Note that IE (60%-80% of the market) is absent from the list. There is old SVG plugin for IE from Adobe, which was discontinued long time ago, buggy, but still used by some people. If your target audience doesn't include IE users, go with SVG.
  • Canvas is another popular format. Unlike SVG its model is <img> and it is geared towards raster graphics. It doesn't have DOM (no automatic image regeneration, no cheap events, no cheap animation). Canvas is yet immature, not finalized, support for events is cumbersome, text was added recently, and didn't trickle down to all browsers yet. But it provides the pixel access. Supported by the same browsers as SVG. Yes, IE doesn't support it. But there are some JavaScript implementations of it. By the virtue of emulation they are slow, buggy, incomplete. Personally I prefer to use SVG, rather than Canvas (all browsers supporting Canvas support SVG as well), unless there is a need for the pixel access or raster effects.
  • VML is the Microsoft standard for graphics. The only browser supporting it is IE. But IE is the market leader, and for public-facing websites that is the biggest reason to support it. It is less feature rich than SVG, e.g., doesn't support clipping, gradient fills are clumsy, the implementation is buggy, and the support was de-facto discontinued since IE6, but it is still in IE7 and IE8.

Plugins:

  • Flash is the best available plugin mostly because it has >90% penetration rate on all browsers (save for mobile platforms). While programming it from browser's JavaScript is clumsy (depending on Flash version), it is still doable. But for serious graphics there is a big temptation to go with the Flash-only solution without browser-based JavaScript.
  • Silverlight is another plugin from Microsoft. It is relatively JavaScript-friendly (there are some strange things about its initialization). Conceptually it feels like a hybrid between SVG and VML, it is DOM-based, but its DOM is not open to the browser's DOM, so you have to use special methods to create nodes, attributes, and process events. Microsoft supports Silverlight on IE, FF/win, Safari/mac, and FF/mac. The Moonlight project supports it on Linux, but last time I tried it was buggy. The 2.0 version adds more Flash-like features including bu
link|improve this answer
There appears to be a good jQuery SVG plugin. Working great, but of course I'd need the Adobe extension if I wanted to use IE. Chrome & Firefox are looking beautiful, tho :) keith-wood.name/svg.html – Mike Jun 25 '09 at 23:06
feedback

Eugene Lazutkin linked to an old question that I had already answered, but I'm gonna do so again! :)

I highly recommend Raphaƫl since you are going to be doing 2D drawing, and it takes care of all those pesky compatibility issues.

link|improve this answer
This looks quite nice - it's fairly large tho - have you encountered any performance issues using this? – Mike Jun 25 '09 at 18:40
feedback

But if you were going to try to hack a particular library, Flot might be a good choice.

alt text

Flot is a pure Javascript plotting library for jQuery. Flot uses Canvas to draw graphics on the fly (requires ExCanvas library to work on Internet Explorer). MIT License.

alt text

If interested, you may want to start with a tutorial.

link|improve this answer
1  
+1 This looks amazing! Plus, it's built on jQuery, which means I like it already. Thx for the link, drinks milk. – Mike Jun 25 '09 at 18:33
feedback

Personally I think canvas is your best bet here. It seems to be gaining a good foothold on the other choices in my opinion. I like the following tutorials:

Step by Step
Mozilla Real Time editor
Basic Usage Guide

By the way, you should know that no form of Canvas (or any other 2d graphics library other than flash) is supported by Internet Explorer. If IE support is a requirement you should definitely go with Flash.

Have fun!

link|improve this answer
Well, part of the purpose of this is to learn js, so flash wouldn't serve my purpose. On the other hand, it probably wouldn't hurt me to learn flash too.... – Charlie Martin Dec 22 '08 at 21:49
feedback

Canvas has alot of very nice 2D graphics. Head over to ajaxian.com for some examples.

link|improve this answer
feedback

Canvas is probably what you're looking for. If you need IE support, use excanvas. You'll probably also want to take a look at processing.js.

link|improve this answer
feedback

For 2D graphics drawing, you can find source code of jsDraw2D graphics library for javascript.

link|improve this answer
Thanks, that looks really good. – Charlie Martin Apr 17 '09 at 20:01
feedback

This tutorial series here gives you a good run down on how to use the Canvas element

link|improve this answer
feedback

Here is a simple tutorial showing how to draw simple shapes using JSGL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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