有没有一种简单的方法可以将SVG路径标记转换为C#System.Drawing.Drawing2D.GraphicsPath?它们密切相关,我希望将SVG路径数据转换为GraphicsPath Points是很容易的。
答案 0 :(得分:6)
This SVG project以下列方式提供解决方案:
var pathData = ...;
var graphicsPath = new GraphicsPath();
foreach (var segment in SvgPathBuilder.Parse(pathData))
segment.AddToPath(graphicsPath);
graphics.DrawPath(Pens.Black, graphicsPath);
它可以通过以下方式作为NuGet包提供:
PM> Install-Package Svg
答案 1 :(得分:4)
没有简单的方法,虽然SVG路径和GraphicsPath
看起来相似并且服务于相同的目的,但在指定和处理事物方面存在一些差异。一个例子:SVG弧定义与GraphicsPath
定义弧的方式不同,所以你需要做一些三角法来转换它。
答案 2 :(得分:1)
我希望这不迟!从AGG查看svg viewer程序的源代码:http://www.antigrain.com/svg/index.html
源代码使用C ++并使用AGG图形引擎,但很容易转换为GDI +。它还处理SVG Arc到Bezier Arc的转换,然后可以与GDI +一起使用。
祝你好运答案 3 :(得分:-2)
没有那么复杂。
如果svg路径仅包含M L Q Z ZM
个函数,则您的方法如下所示:
private GraphicsPath svgMLQZToGraphicsPath(string svgString)
{
GraphicsPath graphicsPath = new GraphicsPath();
float[] x = new float[4];
float[] y = new float[4];
string prev = "";
string[] splits = svgString.Split(' ');
for (int s = 0; s < splits.Length; s++)
{
if (splits[s].Substring(0, 1) == "M")
{
x[0] = float.Parse(splits[s].Substring(1).Replace('.', ','));
y[0] = float.Parse(splits[s + 1].Replace('.', ','));
s++;
prev = "M";
graphicsPath.StartFigure();
}
else if (splits[s].Substring(0, 1) == "L")
{
x[1] = float.Parse(splits[s].Substring(1).Replace('.', ','));
y[1] = float.Parse(splits[s + 1].Replace('.', ','));
graphicsPath.AddLine(new PointF(x[0], y[0]), new PointF(x[1], y[1]));
x[0] = x[1]; // x[1] = new float();
y[0] = y[1]; //y[1] = new float();
s++;
prev = "L";
}
else if (splits[s].Substring(0, 1) == "Q")
{
x[1] = x[0] + (2 / 3) * (float.Parse(splits[s].Substring(1).Replace('.', ',')) - x[0]);
y[1] = y[0] + (2 / 3) * (float.Parse(splits[s + 1].Replace('.', ',')) - y[0]);
x[3] = float.Parse(splits[s + 2].Replace('.', ','));
y[3] = float.Parse(splits[s + 3].Replace('.', ','));
x[2] = x[3] + (2 / 3) * (float.Parse(splits[s].Substring(1).Replace('.', ',')) - y[3]);
y[2] = y[3] + (2 / 3) * (float.Parse(splits[s + 1].Replace('.', ',')) - y[3]);
graphicsPath.AddBezier(new PointF(x[0], y[0]), new PointF(x[1], y[1]), new PointF(x[2], y[2]), new PointF(x[3], y[3]));
x[0] = x[3];
y[0] = y[3];
s = s + 3;
prev = "Q";
}
else if (splits[s].Substring(0, 1) == "Z")
{
graphicsPath.CloseFigure();
if (splits[s].Length >= 2 && splits[s].Substring(0, 2) == "ZM")
{
x[0] = float.Parse(splits[s].Substring(2).Replace('.', ','));
y[0] = float.Parse(splits[s + 1].Replace('.', ','));
s++;
graphicsPath.StartFigure();
prev = "M";
}
}
else
{
string ok = @"^[a-zA-Z]*$";
if (!Regex.IsMatch(splits[s + 1].Substring(0, 1), ok))
{
string replace = prev + splits[s + 1];
splits[s + 1] = replace;
}
}
}
return graphicsPath;
}