SVG Integration

G

Guest

I currently have a SVG object using the adobe svg plugin for Visual C# .NET
2003. The tool is working fine....I can load the svg and use all the feature
of svg including zooming, scaling, etc. What i want is a way to control the
SVG from a navigational panel outside the SVG component in the C# program.
Here is some code of the component so people can know what I am using:

private AxSVGACTIVEXLib.AxSVGCtl mySVG;

can someone help me as soon as possible or direct me to some reference which
can help? I know how to create a navigator ofr embeded object in an html
document. If i could reference the getSVGDocument property of the component
in c# from the other svg document i could make my current navigation panel
work. just another idea. Please help!!!
 
F

Frank Hileman

SVG is not a good run-time solution for .NET developers. It is not
component-oriented, and the best run-times are activeX controls. I suggest
you either use a .NET version of the SVG spec, SVG.NET, which is limited and
slow, or an optimized .NET oriented GDI+ run-time engine, like the free one
in my signature. There is a limited open-source SVG importer for VG.net.

Regards,
Frank Hileman

check out VG.net: www.vgdotnet.com
Animated vector graphics system
Integrated Visual Studio .NET graphics editor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top