5,780,524 members and growing! (86 online)
Email Password   helpLost your password?
Web Development » HTML / CSS » General     Intermediate

Introduction to VML

By SimonS

This article gives a brief overview of VML and shows some examples and practical uses of this cool technology.
HTMLIE, IE 6.0, Dev

Posted: 16 Jan 2002
Updated: 16 Jan 2002
Views: 127,328
Bookmarked: 27 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
9 votes for this Article.
Popularity: 4.14 Rating: 4.33 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 50.0%
4
1 vote, 50.0%
5

Introduction

When I first started playing around with HTML, I couldn't understand why there was no functionality to draw shapes and non-horizontal lines. It was only a couple of years later that I discovered VML (soon to be replaced by SVG). Don't get me wrong, HTML is an incredibly powerful GUI tool, but with the advent of vector graphics for the web, its power grows exponentially.

Overview

VML (vector markup language) is the technology that allows developers to draw directly onto an HTML page as if it were a GDI canvas. The syntax is made up of 2 parts: markup and code. These are mutually exclusive. Unfortunately, possibly due to a very slow adoption rate, the VML object model is poorly documented and rarely used in samples (here too). In order to use VML, you need to ensure that the IE5.0 install included the VML plugin. Here's a really basic VML shape.

Want to get a complete sample going on your machine? Firstly, you'll need to "import" the namespace into you HTML page:

<html xmlns:v="urn:schemas-microsoft-com:vml">

Next, you'll need to add a new behaviour to the page:

<style>
	v\:* { behavior: url(#default#VML); }
</style>

That's it. It won't do anything, but it makes your page VML-aware. This base code will be presumed for the rest of examples. Try adding this anywhere within the <body> tag:

<v:roundrect style="width:150pt;height:50pt"/>

Note that valid XML syntax applies. If you don't adhere to this axiom, then the page could display unpredictably and make debugging very tedious. The actual VML markup is pretty self-explanatory and human-readable (a general goal of the XML standard). Note the v: tag-prefix, this specifies to the IE rendering engine that the roundrect tag in this case is to be handled differently to other tags.

Detailed view:

So, what's the point? One of the advantages of VML is its minute size when compared to images. Depending on the type of webplications you design, this could be reason enough. Also:

  • ability to alter styles(colors, etc...) at after-load time.
  • ability to engage dynamic scripts. (explained later)

So, hopefully, you can see that VML is more than just a distorted 1x1 pixel image. Here's the code for the famous diagonal line that I wanted to do in HTML for so long:

<v:line from="10,10" to="100,100"/>

The code is really neat and simple (albiet for simple shapes). For this type of shape, a from(x,y) to(x,y) co-ord syntax is used. The above samples are probably enough for most simple web graphics, but let's dive into some more.

Try this:

<v:oval style="position:absolute;top:100;left:100; width:150pt;height:50pt" fillcolor="green"/>

Same concept, just a different shape. Note the all too familiar style tag attributes.

Here's a sample that uses a bunch of different shapes.

<v:line strokecolor="red"
   strokeweight="2pt"  from="100pt,100pt" to="200pt,150pt">
   <v:stroke endarrow="diamond"/>
</v:line>
 
<v:line strokecolor="yellow"
   strokeweight="2pt"   from="100pt,100pt" to="50pt,100pt" >
   <v:stroke endarrow="classic"/>
</v:line>
 
<v:line strokecolor="blue"
   strokeweight="2pt" from="100pt,100pt" to="120pt,120pt" >
   <v:stroke endarrow="block"/>
</v:line>

<v:line strokecolor="black"
   strokeweight="2pt"  from="100pt,100pt" to="150pt,200pt">
   <v:stroke endarrow="none"/>
</v:line>

<v:line strokecolor="green"
   strokeweight="2pt"  from="100pt,100pt" to="200pt,85pt">
   <v:stroke endarrow="oval"/>
</v:line>

<v:line strokecolor="green"
   strokeweight="2pt"  from="100pt,100pt" to="200pt,100pt">
   <v:stroke endarrow="open"/>
</v:line>

<v:oval style="width:100pt; height: 50pt" fillcolor="pink" />

<v:curve from="10pt,10pt" to="100pt,10pt" control1="40pt,30pt" control2="70pt,30pt"></v:curve>

<v:rect id=myrect fillcolor="red" 
   style="position:relative;top:100;left:100;width:20;height:20;rotation:10">
</v:rect>

As foreign as it seems (to most), using comments in HTML might be a really good plan here.

One of the awesome things about VML as a graphics tool is that ALL paint events are handled for you. Try minimising the browser or "un-maximise" it and move a part of it off the edge of your screen and out again. It repaints on it's own - and with no noticable performance penalty! This is a massive bonus for those graphics guys out there.

What about a real world use? Here's the output from a graphing engine I supposedly work on during bouts of insomnia.

A huge bonus that this approach has over the standard "let-the-server-make-a-gif" idea, is that the client (browser) can alter the shapes at the client's will. I achieve this by giving each applicable shape an id and use inline event-handlers to setup how mousedown, mousemove and mouseup events are handled. After that it's just a matter of implementing a bit of drag-and-drop code. So, put another way, VML shapes are still objects as far as JScript/VBScript is concerned.

The other technique that you can use to draw shapes is co-ordinate pairs. This can be a lot trickier to code by hand, but does gives you (virtually) unlimited power over your web presentation.

Here's an example:

<v:polyline points="5pt,10pt 15pt,20pt 100pt,50pt 50pt,100pt 5pt,10pt"/>

Conclusion & Call to action

Currently, the SVG specification is set to overtake VML and will eventually be supported natively by the main browsers. But in the meantime, VML is easy to use and can offer a new avenue of expression for lowly web developers.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

SimonS


* Visual C# MVP 2004, 2005 - South Africa
* SADeveloper.NET User Group co-founder and lead 2003, 2004, 2005

MSN : simon_stewart AT hotmail.com
Email : simon AT brokenkeyboards.com
Skype: brokenkeyboards
My blog : BrokenKeyboards.com


Besides my day job as co-director of a successful software development company in Johannesburg, South Africa, I run a small company (Broken Keyboards Software) that has developed a system for managing exercise studios.


It is a relatively new development - initial work was started in 2003 using C# 1.0. Now using C# 1.1 with Access XP as a database. So the system represents the most current techniques and technologies as supported by Microsoft.
Performance is excellent with one customer currently having over 3500 students on record and almost 2 years worth of classes and signins.
If anyone is interested in seeing a demo or screenshots, please email.


My full CV can be download here in PDF format.

Occupation: Web Developer
Location: South Africa South Africa

Other popular HTML / CSS articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 34 (Total in Forum: 34) (Refresh)FirstPrevNext
QuestionVML in javascriptmembersabhandari7:14 3 Oct '07  
GeneralVML & Netscapesussvu hai yen16:09 6 Dec '04  
GeneralRe: VML & NetscapememberDmitry Khudorozhkov6:04 10 Jul '06  
GeneralOn Dragsussvu hai yen21:50 5 Dec '04  
GeneralRe: On DragmemberSimonS21:58 5 Dec '04  
GeneralRe: On Dragsussvu hai yen23:03 5 Dec '04  
GeneralRe: On DragsussAnonymous17:17 31 Aug '05  
GeneralVML - drag and dropsussVML-Newbie23:34 26 Jan '04  
GeneralRe: VML - drag and dropmemberSimonS5:45 27 Jan '04  
GeneralRe: VML - drag and dropsussvu hai yen17:25 7 Dec '04  
GeneralVML printingsussJollt0:11 19 Dec '03  
GeneralRe: VML printingmemberSimonS0:57 19 Dec '03  
GeneralVML & ASPX (ASP.NET) filessussAnonymous5:21 16 Dec '03  
GeneralRe: VML & ASPX (ASP.NET) filessussAnonymous6:39 16 Dec '03  
GeneralRe: VML & ASPX (ASP.NET) filesmemberSimonS6:42 16 Dec '03  
GeneralRe: VML & ASPX (ASP.NET) filesmemberSimonS6:41 16 Dec '03  
GeneralNeeded Some Process to Save an image physically from the ClipboardsussAnonymous21:17 23 Dec '02  
GeneralRe: Needed Some Process to Save an image physically from the ClipboardmemberSimonS20:00 30 Dec '02  
GeneralVML and 3DmemberAnonymous1:09 18 Jun '02  
GeneralRe: VML and 3DmemberSimonS21:41 3 Dec '02  
GeneralRe: VML and 3DsussAnonymous0:26 4 Dec '02  
GeneralRe: VML and 3DmemberSimonS1:28 4 Dec '02  
GeneralRe: VML and 3DsussAnonymous3:37 6 Dec '02  
GeneralRe: VML and 3Dsussmissnightrider19:21 4 Jun '03  
GeneralRe: VML and 3DmemberSimonS23:35 4 Jun '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 16 Jan 2002
Editor: Chris Maunder
Copyright 2002 by SimonS
Everything else Copyright © CodeProject, 1999-2009
Java | Advertise on the Code Project