What I tried is this
<a xlink:target="http://ponyoverflow.com">
<text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text>
</a>
and variations with href and type="simple".
The link text appears, but the link is not clickable.
I tried Firefox 3.5.5, Chromium, Inkscape and GNOME Image Viewer.
Is there anything...
Is it possible to simplify / clean up svg code by replacing the use-tags with standard svg elements? Maybe an inkscape plugin? Haven't found anything...
Background: I'm converting some svgs to javafx graphics (.fxz) with javafx's production suite. And the tool doesn't understand the <use> element.
...
I'm looking for a pure Python library to help put together SVG images. It doesn't need to be fast.
I know pySVG exists, but I'm not interested in a GPL library (and I can't use GPL libraries for this particular project).
Basic SVG elements aren't especially complicated, so I suppose I could roll my own, but I'd rather participate in a...
I would like to programatically convert SVG files to PDF files. However, the SVG files contain text that must be searchable in the generated PDF files. Also, it has to work on Red Hat Enterprise Linux 5.3 or CentOS 5.3 for the x86_64 architecture. It would be nice if it were Open Source or at least not very expensive.
Here is what I've ...
I am reading svg file stored in mysql db in longblob format in an gwt application. I am tansferring the file in string format from servlet to client side as json using HTTP. Now i want to embed it into HTML to display in a panel.
the HTML tag provided is
How to embed it without creating a temporary file?
...
How could I convert a PNG image to a SVG?
...
I would like to edit SVG files using some scripting language (preferably Python). In particular, I would like to merge two SVG files, add some annotations, and arrange them in a larger image. Is there any software available for such purposes?
Thanks,
Bartosz
...
If I have a map of three countries, and their borders form the outline of a sea, is their a way with SVG to give that bound area attributes and style?
Another example might be three triangles which form a third triangle in the center (like the triforce). If someone wanted to make that middle empty area glow (or whatever)...
...
All the (web)designers I've known or worked with, used photoshop almost exclusively, and yet, now that I wanna try my hand at web-design for a personal project, I feel compelled to use a vector graphics application (namely Inkscape).
The idea of the actual design process just seems more rational with VG, given that I'll be experimenting...
Hi, i need to parse some paths of an SVG file, they are simple lines. When retrieving the data i end up with this string:
m 0,666.6479 254.28571,0
According to SVG specifications m denotes a new current point then the following 2 numbers are the position and the laters are relative positions to the first one.
So that would create ...
Hi,
I've started building an app with Flex/Air but am getting sick of it's clunkyness.
The app that I'm building has similar behaviour to Prezi (www.prezi.com) but in a completely different field.
I'm looking for something on the desktop which has flex like capabilities, such as drawing vectors then zooming in/out, rotating etc, gui w...
I need to build an "interactive floorplan" for a shopping centre (or two).
Many shopping centre websites already have this (eg Bluewater in the UK)
Traditionally, the way to build such a floorplan / map is to do it in Flash. The actual floorplan is a Flash asset and the data that describes which retailer is in each location is fetched ...
I need to be able to draw SVG images (with the ability to scale, and rotate the images by 90,180 and 270 degrees).
I also want the ability of instead of rendering the images to a bitmap (e.g. for displaying), to be able to draw them into a new SVG image (exporting the "document" to SVG).
wxWidgets does not seem to have any built in SVG...
I'm adding SVG export support to an old application built with MFC and using plain old GDI. As SVG 1.1 doesn't support text wrapping, I am forced to do this manually.
The application provides me with a CFont instance (which contains an HFONT). I can calculate the width of a piece of text using CFont::GetTextExtentPoint(), but I haven't ...
Hi,
I'm having an issue with the rendering of a truetype font inside an svg being rendered to a pdf through fop.
In the final pdf the font comes out with Times New Roman instead of the truetype font I had expected.
The main font family of the document is using Type 1 fonts and are also using font metrics that I generated and these are...
Does android have any support for viewing SVG files or are there any 3rd party SVG viewers for the Android platform?
...
[edit]sigh... the "spam protection" here isn't letting me post the links, so I guess it's URIs instead[/edit]
[edit2]ok, BROKEN forms of the URI that can get past the regexp...[/edit2]
I'll preface this by saying I'm totally new to SVG, and somewhat new to Javascript, having come from a background in low-level C. On a whim, though, I de...
I'm making a project which uses HTML elements as nodes in a diagram and uses Raphaël to draw lines between them. The problem is that the lines always wind up underneath the HTML elements. I have tried
raphael.canvas.style.zIndex = 1000;
(which is larger than all my other z-indexes) and also tried placing the SVG canvas as the last ele...
So how to get the size of an SVG file with javascript when width and height are not set on the svg element? The svg is a string, but could be made a DOM if necessary.
...
Is there a way to cut one shape out of another in SVG? For example, I have a rect and an ellipse and I want to make a rect with a transparent hole in the middle. I would imagine it would look something like this:
<set operation="difference" fill="black">
<rect x="10" y="10" width="50" height="50/>
<ellipse cx="35" cy="35" rx=1...