forked from cursedtoxi/WebControls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSvgPath.cs
More file actions
83 lines (67 loc) · 2.42 KB
/
SvgPath.cs
File metadata and controls
83 lines (67 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (c) 2018 Aurigma Inc. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
namespace Aurigma.Svg
{
public class SvgPath : SvgElement
{
private readonly string _name = "path";
public SvgPath()
{
Path = new List<PathCommand>();
Stroke = Color.Black;
Fill = Color.Black;
}
public override string LocalName
{
get { return _name; }
}
public override string Name
{
get { return _name; }
}
public List<PathCommand> Path { get; set; }
public float StrokeWidth { get; set; }
public Color Stroke { get; set; }
public Color Fill { get; set; }
public override IEnumerable<SvgAttribute> GetAttributes()
{
var baseAttributes = base.GetAttributes();
if (baseAttributes != null)
{
foreach (var attr in baseAttributes)
{
yield return attr;
}
}
var ci = CultureInfo.InvariantCulture;
yield return new SvgAttribute("stroke-width",
() => StrokeWidth.ToString(ci),
v => StrokeWidth = SvgAttribute.ParseFloatAttribute(v)
);
yield return new SvgAttribute("stroke",
() => ColorTranslator.ToSvg(Stroke),
v => Stroke = SvgAttribute.ParseColorAttribute(v, Stroke.A)
);
yield return new SvgAttribute("stroke-opacity", "1",
() => ((double)Stroke.A / 255).ToString(ci),
v => Stroke = SvgAttribute.ParseOpacityAttribute(v, Stroke)
);
yield return new SvgAttribute("fill", "",
() => ColorTranslator.ToSvg(Fill),
v => Fill = SvgAttribute.ParseColorAttribute(v, Fill.A)
);
yield return new SvgAttribute("fill-opacity", "1",
() => ((double)Fill.A / 255).ToString(ci),
v => Fill = SvgAttribute.ParseOpacityAttribute(v, Fill)
);
yield return new SvgAttribute("d",
() => PathCommand.ToSvgString(Path),
v => Path = PathCommand.ParseCommands(v)
);
}
}
}