Click here to Skip to main content
15,885,767 members
Articles / Programming Languages / C#

Simple SVG Editor

Rate me:
Please Sign up or sign in to vote.
4.38/5 (18 votes)
18 Sep 2007CPOL1 min read 167.9K   12.6K   92  
This application is a combination of two projects from The Code Project: DrawTools by Alex Fry and SVGPad by Maurizio Bigoloni
using System;

namespace Draw
{
	public class Draw
	{
		public const string GRAPHICS_EXTS = "Graphic files (*.bmp;*.jpg;*.jpeg;*.gif;*.ico;*.png)|" + 
			"*.bmp;*.jpg;*.jpeg;*.gif;*.ico;*.png";
		public const string XmlDeclaration = "<?xml version=\"1.0\" standalone=\"no\"?>";
		public const string XmlDocType = "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.0//EN\" \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">";

		public Draw()
		{
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions