I have a (fairly) simple SVG v1.0 file that is causing a segmentation
fault in Batik version 1.1. I am using the binary precompiled version
running on Linux with the Sun JRE version 1.3.1_03.
The SVG file itself is nothing more than a grouping of simple paths
which get filled and a few lines. I
Hello,
I am fairly new to SVG and Batik and was wondering if the following was
possible:
I need to create a Java application using swing and I need to track
nodes to which there may be multiple "lines" terminating at it. The user
then may decide to drag a node to a different point
Haha,I have found the solution: just change the
old: var path = root.createElement( 'path' );
>>
new: var path = root.createElementNS(
http://www.w3.org/2000/svg,'path'
);
the development of the batik is just a
nightmare
- Original Message -
Stephane, this did the trick. Many thanks!
Stephane Hillion wrote:
> Use:
>
> Element circle =
> document.createElementNS("http://www.w3.org/2000/svg";,
> "circle");
> instead of:
>
> Element circle = document.createElement("cir
Use:
Element circle =
document.createElementNS("http://www.w3.org/2000/svg";,
"circle");
instead of:
Element circle = document.createElement("circle");
> -Original Message-
> From: George Armhold [mailto:[EMAIL PROTECTED]]
> S
Nicolas Socheleau wrote:
> Here is the page http://xml.apache.org/batik/javaScripting.html that
> might help you. It describe the steps to go through in order to take
> advantage of dynamic updates in Batik with Java ( this is working
> with Batik 1.5beta3 ).
Thanks Nicolas. I copied the co
I got my JSVGCanvas application working just fine. Now I
am trying to turn it into an applet. I replaced the main function with
an init function and created some HTML and use appletviewer to display it.
But I got error as follow:
load: com.swisslog.wm.WMVisualization.SVGApplet can't be instanti