0
votes
2answers
19 views
SVG Elliptical Arcs with Java
I recently wrote a java program transforming a SVG document to HTML/Canvas: It was easy to translate a path such as
d="M 0 0 L 100 100 z"
to something like
GeneralPath L= new GeneralPath();
…
1
vote
5answers
1k views
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 …
0
votes
0answers
7 views
Text alignment in SVG
How to make text with proportional font but an equal number of characters per line fully justified in SVG text box? Preferably with an svg-code example if it's possible.
0
votes
1answer
44 views
jQuery doesn’t select lineargradient object.
I am using jQuery 1.3.2, and I'm trying to select some elements in an svg DOM element.
$('svg > defs > lineargradient')
However for some reason it does not select it, I know that I can access …
0
votes
2answers
13 views
Render SVG stored in memory using JSR-226 (Blackberry)
I have code that generates a data-driven SVG graph and I'd like to display the graph directly.
The method:
javax.microedition.m2g.ScalableImage.createImage
can take either a URI or an InputStream …
1
vote
2answers
22 views
Default SVG style
What is the default SVG style ? for example, what is the default font of a new SVG document ? Is it described in the SVG spec ?
<svg><text x="10" y="10">Hello</text></svg>
…
1
vote
2answers
14 views
How to load an external JavaScript script to (pure) SVG document?
I have fairly large script within an .svg file and I'd like to get it out of the CDATA section into an external file. How to achieve this?
The HTML regular does not work:
<script …
2
votes
2answers
112 views
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.
1
vote
3answers
27 views
How do you convert an SVG image “paths” into separate PNG images?
Hi there,
I've got an SVG image with 67 separate paths.
Are there any libraries/tutorials out there that will create a separate raster image such as a PNG for each of those paths, and perhaps name …
0
votes
2answers
291 views
Is there a script available to resize SVG?
Is there a way to script the rescaling of a .SVG from its current size (thousands of pixels) to a much smaller size? I've tried ImageMagick, but its support for SVG gradients is far too weak to be …
0
votes
0answers
9 views
Extracting path data from an SVG map to use in RaphaelJs
I'm trying to build an an interactive map using RaphaelJS (e.g. http://raphaeljs.com/australia.html). Please check the source. It requires map path data to input. There is no clear explanation …
1
vote
3answers
26 views
How to transform a path in svg so that it is parallel to its original location?
Hi, I have a path defined in SVG. I would like to make two copies of the path and translate them so that one sits parallel to the original on one side, and the other sits parallel on the other side. …
0
votes
1answer
26 views
Ruby Support for SVG
Is there some library or helper to produce SVG graphics with Ruby? I googled a bit and found many, but all seem to be dusty and very incomplete… Does anyone know about some nice, reliable alternative?
…
0
votes
2answers
50 views
Mono / Lighttpd - Garbage text added to SVG file returned via Response.Write()
I am developing a web application that manages a population of plants. One feature of the application is the ability to view relationships between plants as a graph. This visualisation is generated as …
2
votes
6answers
184 views
Which would you prefer? SVG, HTML5 or regen’d-PNG for graphs & charts?
I'm developing a new site that graphs some operational metrics. As such about a dozen charts/graphs will be displayed on the site. I want to be able to have them dynamically scale down (within …
