svg

Displaying vector graphics in a browser

I need to display some interactive (attaching with DOM listeners etc. and event handling) vector graphics in web site I am working on. There is a W3C recommendation for SVG though this format is still not recognized by Internet Explorer support of which is a must (for a public website). IE handles VML though and there are even javascript...

Is there a way to render svg data in a swf at runtime?

I'd like to render to svg data in a swf at runtime (not in Flex - not using degrafa) - how would I go about doing that? ...

Scripting SVG

I'm considering developing a website similar to stackoverflow, but the answers may also consist of drawings (schematics, in this case). I want to have an area in the answer form where they can make this schematic without requiring special plugins, etc. Are we to the point where SVG has or should have critical mass soon (1-2 years) s...

XAML to SVG?

How would you go about converting XAML to SVG and vice versa? My initial approach it to use xslt to map the different elements and attributes, but I don't know enough about both syntaxes to even guess about the plausibility of such an approach. ...

Aligning text in SVG

I am trying to SVG XML documents with a mixture of lines and brief text snippets (two or three words typically). The major problem I'm having is getting the text aligning with line segments. For horizontal alignment I can use text-anchor with left, middle or right. I can't find a equivalent for vertical alignment; alignment-baseline do...

Converting SVG to PNG using C#

I've been trying to convert SVG images to PNG using C#, without having to write too much code. Can anyone recommend a library or example code for doing this? ...

Seeking a good solution for SVG + Javascript framework

I'm looking to hear others experiences with SVG + Javascript Frameworks. Things that I'd like the framework to handle - DOM creation, event handling and minimal size. Jquery SVG plugin - http://keith-wood.name/svg.html seems to be the only one I can find. ...

Rendering SVG and Delphi

What are options to import and render SVG images with Delphi (Win32)? "Interactive" component would be big advantage, I'd like to be able to modify the SVG image dynamically (change colors, line widths, texts) and get events when user clicks the image. ...

What are the best practices for using html with xml based languages like svg?

From browsing on this site and elsewhere, I've learned that serving websites as xhtml at present is considered harmful. Delivering xhtml and serving it as application/xhtml+xml isn't supported by the majority of people browsing at present, delivering xhtml as text/html is at best a placebo for myself, and at worst a recipe for breaking ...

Can Adobe AIR display SVG?

I see that Adobe AIR uses WebKit as its render and I see that WebKit (at least the most current build) has some SVG support. Does this mean (and has anyone specifically tried) that an Adobe AIR application could render SVG on an HTML page? ...

How to create an SVG "tooltip"-like box?

Given an existing valid SVG document, what's the best way to create "informational popups", so that when you hover or click on certain elements (let's say ) you popup a box with an arbitrary amount (i.e. not just a single line tooltip) of extra information? This should display correctly at least in Firefox and be invisible if the image ...

SVG rendering in a PyGame application

In a pyGame application, I would like to render resolution-free GUI widgets described in SVG. What tool and/or library can I use to reach this goal ? (I like the OCEMP GUI toolkit but it seems to be bitmap dependent for its rendering) ...

Interactive SVG - Learning Resources?

Has anyone any reources for learning how to implement SVG with php/mysql (and possibly with php-gtk)? I am thinking of making a top-down garden designer, with drag and drop predefined elements (such as trees/bushes) and definable areas of planting (circles/squares). Gardeners could then track over time how well planting did in a certain ...

View SVG using Silverlight or Flash

Is there a way to view a SVG from either a file or webpage dynamically using Silver light or flash? Edit: I am currently converting them on the server using inkscape. The only trouble with this is the time it takes to make all 60+ pages of the catalog is a little slow. It take 5 min to make it, and some customers(boss included) would...

Is it possible to manipulate an SVG document embedded in an HTML doc with JavaScript?

I have made a SVG image, or more like mini application, for viewing graphs of data. I want to include this in a HTML page, and call methods on the SVG image. Example: <object id="img" data="image.svg" width="500" height="300"/> <script>document.getElementById("img").addData([1,23,4]);</script> Is it at all possible to call methods on...

Which SVG toolkit would you recommend to use in Java?

As a follow-up to another question, I was wondering what would be the best way to use SVG in a Java project. ...

Which book would you recommend to learn SVG?

I am a complete beginner with SVG and I am looking for books that would help me get started. I am interesting in scripting, and animations. ...

Techniques for dynamic (algorithmic) graphics

I'm programming an application for a 32 bit processor with limited memory (512k flash, 32k RAM). The display on this device is 128x160 with 16 bit color, which would normally consume 40k ram if I were to buffer it on my processor. I don't have that much RAM, so I'm looking for techniques, tips, tricks, ideas for generating screen data ...

Is it sensible to dynamically generate SVG images on websites yet?

I'm just learning about SVG, and it seems great but I'm not sure about browser support - have people successfully got around this, or is it still too early? ...

Is it possible to add SVG images to a web page through CSS?

I just started experimenting with SVG in web pages, and I discovered that it is only possible to add SVG images into HTML using <object /> tags, not <img /> like I would have expected. Most of the time, I add graphics to web pages through CSS because they are part of the presentation of the site, not the content. I know it is possible t...