SvgPath.cs 6.23 KB
Newer Older
davescriven's avatar
davescriven committed
1
2
3
using System;
using System.Collections.Generic;
using System.Text;
4
using System.Linq;
davescriven's avatar
davescriven committed
5
6
7
8
9
10
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml.Serialization;
using System.Xml;
using System.Diagnostics;
using Svg.Pathing;
owaits's avatar
owaits committed
11
using Svg.Transforms;
davescriven's avatar
davescriven committed
12
13
14

namespace Svg
{
15
16
17
    /// <summary>
    /// Represents an SVG path element.
    /// </summary>
18
    [SvgElement("path")]
19
    public class SvgPath : SvgVisualElement
davescriven's avatar
davescriven committed
20
21
22
    {
        private GraphicsPath _path;

23
24
25
        /// <summary>
        /// Gets or sets a <see cref="SvgPathSegmentList"/> of path data.
        /// </summary>
davescriven's avatar
davescriven committed
26
27
28
        [SvgAttribute("d")]
        public SvgPathSegmentList PathData
        {
29
        	get { return this.Attributes.GetAttribute<SvgPathSegmentList>("d"); }
davescriven's avatar
davescriven committed
30
31
            set
            {
32
33
            	this.Attributes["d"] = value;
            	value._owner = this;
davescriven's avatar
davescriven committed
34
35
36
37
                this.IsPathDirty = true;
            }
        }

38
39
40
        /// <summary>
        /// Gets or sets the length of the path.
        /// </summary>
davescriven's avatar
davescriven committed
41
42
43
        [SvgAttribute("pathLength")]
        public int PathLength
        {
44
45
        	get { return this.Attributes.GetAttribute<int>("pathLength"); }
            set { this.Attributes["pathLength"] = value; }
davescriven's avatar
davescriven committed
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
		
        /// <summary>
        /// Gets or sets the marker (end cap) of the path.
        /// </summary>
		[SvgAttribute("marker-end")]
		public Uri MarkerEnd
        {
			get { return this.Attributes.GetAttribute<Uri>("marker-end"); }
			set { this.Attributes["marker-end"] = value; }
		}


		/// <summary>
		/// Gets or sets the marker (start cap) of the path.
		/// </summary>
		[SvgAttribute("marker-start")]
		public Uri MarkerStart
		{
			get { return this.Attributes.GetAttribute<Uri>("marker-start"); }
			set { this.Attributes["marker-start"] = value; }
		}


davescriven's avatar
davescriven committed
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
        /// <summary>
        /// Gets the <see cref="GraphicsPath"/> for this element.
        /// </summary>
        public override GraphicsPath Path
        {
            get
            {
                if (this._path == null || this.IsPathDirty)
                {
                    _path = new GraphicsPath();

                    foreach (SvgPathSegment segment in this.PathData)
                    {
                        segment.AddToPath(_path);
                    }

                    this.IsPathDirty = false;
                }
                return _path;
            }
91
92
93
94
            protected set
            {
                _path = value;
            }
davescriven's avatar
davescriven committed
95
96
97
98
99
        }

        internal void OnPathUpdated()
        {
            this.IsPathDirty = true;
100
            OnAttributeChanged(new AttributeEventArgs{ Attribute = "d", Value = this.Attributes.GetAttribute<SvgPathSegmentList>("d") });
davescriven's avatar
davescriven committed
101
102
        }

103
104
105
        /// <summary>
        /// Gets or sets a value to determine if anti-aliasing should occur when the element is being rendered.
        /// </summary>
davescriven's avatar
davescriven committed
106
107
108
109
110
        protected override bool RequiresSmoothRendering
        {
            get { return true; }
        }

111
112
113
114
        /// <summary>
        /// Gets the bounds of the element.
        /// </summary>
        /// <value>The bounds.</value>
davescriven's avatar
davescriven committed
115
116
117
118
119
        public override System.Drawing.RectangleF Bounds
        {
            get { return this.Path.GetBounds(); }
        }

120
121
122
        /// <summary>
        /// Initializes a new instance of the <see cref="SvgPath"/> class.
        /// </summary>
davescriven's avatar
davescriven committed
123
124
        public SvgPath()
        {
125
126
127
            var pathData = new SvgPathSegmentList();
            this.Attributes["d"] = pathData;
            pathData._owner = this;
davescriven's avatar
davescriven committed
128
        }
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148

		/// <summary>
		/// Renders the stroke of the <see cref="SvgVisualElement"/> to the specified <see cref="SvgRenderer"/>
		/// </summary>
		/// <param name="renderer">The <see cref="SvgRenderer"/> object to render to.</param>
		protected internal override void  RenderStroke(SvgRenderer renderer)
		{
 			if (this.Stroke != null)
			{
				float strokeWidth = this.StrokeWidth.ToDeviceValue(this);
				using (var pen = new Pen(this.Stroke.GetBrush(this, this.StrokeOpacity), strokeWidth))
				{
					if (this.StrokeDashArray != null && this.StrokeDashArray.Count > 0)
					{
						/* divide by stroke width - GDI behaviour that I don't quite understand yet.*/
						pen.DashPattern = this.StrokeDashArray.ConvertAll(u => u.Value / ((strokeWidth <= 0) ? 1 : strokeWidth)).ToArray();
					}

					if (this.MarkerStart != null)
					{
149
150
                        var marker = this.OwnerDocument.GetElementById<SvgMarker>(this.MarkerStart.ToString());
                        pen.CustomStartCap = CapFromMarker(marker, strokeWidth);
151
152
153
154
					}

					if (this.MarkerEnd != null)
					{
Eric Domke's avatar
Eric Domke committed
155
                        var marker = this.OwnerDocument.GetElementById<SvgMarker>(this.MarkerEnd.ToString()); 
156
						pen.CustomEndCap = CapFromMarker(marker, strokeWidth);
157
158
159
160
161
162
163
					}

					renderer.DrawPath(pen, this.Path);
				}
			}
		}

164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
        private CustomLineCap CapFromMarker(SvgMarker marker, float strokeWidth)
        {
            var markerPath = marker.Path.Clone() as GraphicsPath;

            var transMatrix = new Matrix();
            transMatrix.Translate(-1 * marker.RefX.ToDeviceValue(), -1 * marker.RefY.ToDeviceValue(), MatrixOrder.Append);
            transMatrix.Rotate(90f, MatrixOrder.Append);
            // With the current aliasing structure, 1px lines still render as 2px lines
            if (strokeWidth < 2)
            {
                transMatrix.Scale(.5f, .5f, MatrixOrder.Append);
            }
            else if (marker.MarkerUnits == SvgMarkerUnits.userSpaceOnUse)
            {
                transMatrix.Scale(1f / strokeWidth, 1f / strokeWidth, MatrixOrder.Append);
            }

            markerPath.Transform(transMatrix);
            return new CustomLineCap(markerPath, null);
        }
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204

		public override SvgElement DeepCopy()
		{
			return DeepCopy<SvgPath>();
		}

		public override SvgElement DeepCopy<T>()
		{
			var newObj = base.DeepCopy<T>() as SvgPath;
			foreach (var pathData in this.PathData)
				newObj.PathData.Add(pathData.Clone());
			newObj.PathLength = this.PathLength;
			newObj.MarkerStart = this.MarkerStart;
			newObj.MarkerEnd = this.MarkerEnd;
			return newObj;

		}




davescriven's avatar
davescriven committed
205
206
    }
}