I compile and run SvgDocTest from the sample code and always get a fatal error (detailed below) when assigning a file name to the SRC property of AxSVGCtl. (Line 235 in Form1.cs.) I have tried a number of different svg files, all of which successfully display in other svg viewers. I have also searched extensively for info on this error on MSDN and other sites, but without any luck, although a lot of developers seem to encounter this with a variety of ActiveX controls.
System.AccessViolationException was unhandled
Message="Attempted to read or write protected memory. This is often an indication that other memory is corrupt."
Source="Interop.SVGACTIVEXLib"
StackTrace:
at SVGACTIVEXLib.ISVGControl.set_SRC(String pVal)
at AxSVGACTIVEXLib.AxSVGCtl.set_SRC(String value)
at SvgDocTest.Form1.LoadFile(String fname) in C:\Documents and Settings\mfdatsw1\My Documents\ADEPT\SPS-49\SVG Viewer Source Code Trials\CodeProject SVG Viewer\SvgDocTest\Form1.cs:line 258
at SvgDocTest.Form1.button1_Click(Object sender, EventArgs e) in C:\Documents and Settings\mfdatsw1\My Documents\ADEPT\SPS-49\SVG Viewer Source Code Trials\CodeProject SVG Viewer\SvgDocTest\Form1.cs:line 238
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm)
at SvgDocTest.Form1.Main() in C:\Documents and Settings\mfdatsw1\My Documents\ADEPT\SPS-49\SVG Viewer Source Code Trials\CodeProject SVG Viewer\SvgDocTest\Form1.cs:line 218
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
This is not a perfect code. I am very new to adapt all the XML Apis. Actually this code works fine.
If there are fixed three nos. of <image> nodes in the file A.
But these node are quite, they can be two, one , or more <image> node in file A.
In that situation program crashes.
Can you please help me to provide the optimized sample code to deal with this, using C# for this.
I just want read the value of x and y from the <<rect>>
and remove the transform attribute from <<text>>
and place the earlier read xand y as a x and y atribute to <<text>>
can some body help me out with a sample code for that.
below is a sample format which i have to modify.
OR read the last two value from the transform attribute ::transform="matrix(1 0 0 1 100.1431 112.2344)"
and delete the transform attribute and add the two bold values and x and y attributes.
I am using the SVG-library with success. But when the graphics become more complex*) the server hangs and the debugger says "stack overflow error" in function GetXML().
When switching off parts of the drawing, the library works.
Does anyone know how this error can be corrected?
Thank You, Franz
*) The drawing consists of up to 6 charts with about 100 vertical lines. The amount of lines is the problem. When the lines are omited, the drawing works and also when then amount of charts per drawing is reduced to 4.
You cant read the .SVG file using this library. That portion is not written in this library.
If you really want to do that you have to write you own piece of code. To read the code to reading the .SVG.
I read to do it I was able to do but struck while reading the matrix transformation.
If you would able to write it or get the help somewhere , please le me knw too.
Hi Nikkie.
I wrote my own code to read the svg file.
I used an algorithm to read a simple xml file, you can see it here http://www.c-sharpcorner.com/UploadFile/mahesh/ReadWriteXMLTutMellli2111282005041517AM/ReadWriteXMLTutMellli21.aspx[^]
in the sample number 2 you will see how it works with xmlelements. I use a GoDiagram library to draw the differents figures, for example, if xmlelement == "line" so draw.line(coorx, coory), the coordinates in svg document are the attributes, so you can read the coordinates too.
So you can read the svg file and you can draw the same figure with c#. You can draw without GoDiagram too, only you need to know how to draw lines, circles or wathever in c#.
HOw you are dealing with the transform matrix,
I am struck with that portion can you help.
How you are reading the 6 cordinates of the attribute transform=matrix(1,2,3,4,5,6)
Hi everybody.
I have Vista SP1 and VS 2008 in my pc. Of course, now I downloaded SVG Adobe too and SVG version 0.92.
I'm trying to compile this project but some errors occurs.
My firts question is about the windows, maybe this project does not run here and maybe does not run with VS 2008 too. So if it runs please tell me what I need to do.
Second. About the errors:
First I Build the solution in VS2008 no errors happends but 708 warnings appears, here is one:
Warning 1 Missing XML comment for publicly visible type or member 'SvgNet.SvgElement._children' C:\Users\M\Documents\Proyectos\svgnet_src092\SvgNet\SvgNet\SvgElement.cs 5923 SvgNet
Second. I select SvgDocTest as startup project so when I run the project a exceptions happends:
I reply myself. Well for all folks that use Vista, take care, because the adobe plug in does not working fine in this O.S.
Use XP to compile this project.
while running the sample the above statement in SvgGdiTest project
gives "Object reference not set to an instance of an object" error.
I am using IDE vs2003 and .Net Framework v1.1.
Kindly help.
Found this great lookin library whilst on my searches, I'm thinking of writing a .NET Framework Extension for SVG and just wanted to check whats been done.
This article was posted a while ago whats the state of play these days? Ben you still about? tried following the links but they're dead.
I'm still alive and this library still works for rendering GDI+ calls to SVG -- but it's unlikely I'll ever do any more work on it. Thanks for your interest though
Is it possible that you create a sourceforge project for this? So maybe other people can join the project and develop it further? E.g. for me it's useless only because it doesn't support FillPath/DrawPath, but maybe sometime I will do something on it and then it would be bad, if I couldn't easily provide it to the community. It is a really great project!
hello~everyone~~
i am just beginning to learn SVG...
just as title...
i downloaded the source file,but i don't know how to install the source file...
could you tell me how to do?
thanks ~!!!
Hello.
We are som students trying to use SvgNet in asp.net to generate a svg picture´.. But it isnt working. we are using an Embed tag inside the asp.net page like this: