vote up 0 vote down star

I have a webapp from which I'd like to insert diagrams and images quickly and easily. I expect there is, somewhere out there, a webservice which will take a URL with a parameter that describes the vector graphics or diagram and returns an image.

No unlike what google charts does for graphing data.

Any resources or ideas on this?

If I had to build it myself, do you have some ideas of how I might accomplish that?

For instance, does PHP/asp/etc have a graphics library that's capable of rendering simple vector graphics?

-Adam

flag

4 Answers

vote up 2 vote down check

Check out Raphael. Done by a bloke here in Australia.

link|flag
vote up 1 vote down

No unlike what google charts does for graphing data.

Why not just use the Google Chart API?

http://code.google.com/apis/chart/

link|flag
It doesn't allow me to draw arbitrary vector graphics or diagrams. Only graphs and a few other visualizations. – Adam Davis Nov 20 '08 at 4:12
vote up 1 vote down

Have you considered something like http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm to produce actual vector graphics on the client side, instead of making requests to a server?

link|flag
vote up 1 vote down

One possibility would be to generate SVG in realtime in the browser. This decreases browser compatibility, but that will decrease over time.

link|flag
With the SVG plugin for IE, there is lots of support for all browsers. Unfortunately IE8 Beta 2's performance with SVGs is so bad that one wonders if it will even be usable in IE8 RTM – scunliffe Nov 21 '08 at 21:37

Your Answer

Get an OpenID
or

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