diff --git a/Source/SVGImage/SVG/Shapes/Shape.cs b/Source/SVGImage/SVG/Shapes/Shape.cs index a44f6ed..e933f66 100644 --- a/Source/SVGImage/SVG/Shapes/Shape.cs +++ b/Source/SVGImage/SVG/Shapes/Shape.cs @@ -488,6 +488,7 @@ private Stroke GetStroke(SVG svg) if (this.m_stroke == null) { this.m_stroke = new Stroke(svg); + this.m_stroke.PaintServerKey = svg.PaintServers.Parse("black"); } return this.m_stroke; @@ -498,6 +499,7 @@ protected Fill GetFill(SVG svg) if (this.m_fill == null) { this.m_fill = new Fill(svg); + this.m_fill.PaintServerKey = svg.PaintServers.Parse("black"); } return this.m_fill;