|
|
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
|
|
|
answered Dec 22 '08 at 2:55
|
|