зеркало из https://github.com/wieslawsoltes/SVG.git
Fix: SvgColourServer ToString method.
This commit is contained in:
Родитель
63f4036f75
Коммит
b77562e7b4
|
@ -53,7 +53,7 @@ namespace Svg
|
|||
return c.Name;
|
||||
#endif
|
||||
// Return the hex value
|
||||
return String.Format("#{0}", c.ToArgb().ToString("x").Substring(2));
|
||||
return String.Format("#{0}", c.ToArgb().ToString("x8").Substring(2));
|
||||
}
|
||||
|
||||
public override SvgElement DeepCopy()
|
||||
|
|
|
@ -81,10 +81,9 @@ namespace Svg
|
|||
{
|
||||
if (destinationType == typeof(string))
|
||||
{
|
||||
// check for none
|
||||
if (value == SvgPaintServer.None) return "none";
|
||||
if (value == SvgPaintServer.Inherit) return "inherit";
|
||||
if (value == SvgPaintServer.NotSet) return string.Empty;
|
||||
// check for constant
|
||||
if (value == SvgPaintServer.None || value == SvgPaintServer.Inherit || value == SvgPaintServer.NotSet)
|
||||
return value.ToString();
|
||||
#if !NETSTANDARD20
|
||||
var colourServer = value as SvgColourServer;
|
||||
if (colourServer != null)
|
||||
|
|
Загрузка…
Ссылка в новой задаче