示例#1
0
		public void SaveAsPLTTest()
		{
			string source = @"D:\JawiExport\abd karim bin ishak.svg";
			Inkscape target = new Inkscape();
			target.SaveAsPLT(source,source.Replace(".svg",".plt"));
			target.Dispose();
		}
示例#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();
		}