Beispiel #1
0
		public void BreakApartTest()
		{
			Inkscape target = new Inkscape();
			target.OpenFile(@"G:\works\Output\abu bakar bin mohd hassan.svg");//mat saad bin jusoh.svg");
			target.BreakApart(@"D:\Export\abu bakar bin mohd hassan.svg");//mat saad bin jusoh.svg");
			target.Dispose();
		}
Beispiel #2
0
		public void ExportToPLTTest()
		{
			string from = @"G:\works\Output\mat saad bin jusoh.svg.svg";
			string to = @"D:\Export\mat saad bin jusoh.svg.svg";
			
			Inkscape target = new Inkscape();
			target.OpenFile(from);
			target.BreakApart(to);
			target.SaveAsPLT(to,to.Replace(".svg",".plt"));
			target.Dispose();
		}
Beispiel #3
0
		public void OpenFileTest()
		{
			Inkscape target = new Inkscape();
			//target.OpenFile(@"G:\works\words\talib.svg");//.ToUpper());
			target.OpenFile(@"G:\works\Output\mat saad bin jusoh.svg");
		}