svg fill change
|
@ -14,7 +14,7 @@ type
|
||||||
SvgProperties = object
|
SvgProperties = object
|
||||||
display: bool
|
display: bool
|
||||||
fillRule: WindingRule
|
fillRule: WindingRule
|
||||||
fill: Paint
|
fill: string
|
||||||
stroke: ColorRGBX
|
stroke: ColorRGBX
|
||||||
strokeWidth: float32
|
strokeWidth: float32
|
||||||
strokeLineCap: LineCap
|
strokeLineCap: LineCap
|
||||||
|
@ -23,7 +23,7 @@ type
|
||||||
strokeDashArray: seq[float32]
|
strokeDashArray: seq[float32]
|
||||||
transform: Mat3
|
transform: Mat3
|
||||||
shouldStroke: bool
|
shouldStroke: bool
|
||||||
opacity, strokeOpacity: float32
|
opacity, fillOpacity, strokeOpacity: float32
|
||||||
linearGradients: TableRef[string, LinearGradient]
|
linearGradients: TableRef[string, LinearGradient]
|
||||||
|
|
||||||
RenderMode = enum
|
RenderMode = enum
|
||||||
|
@ -43,15 +43,13 @@ proc attrOrDefault(node: XmlNode, name, default: string): string =
|
||||||
|
|
||||||
proc initSvgProperties(): SvgProperties =
|
proc initSvgProperties(): SvgProperties =
|
||||||
result.display = true
|
result.display = true
|
||||||
try:
|
result.fill = "black"
|
||||||
result.fill = parseHtmlColor("black").rgbx
|
result.stroke = rgbx(0, 0, 0, 255)
|
||||||
result.stroke = parseHtmlColor("black").rgbx
|
|
||||||
except:
|
|
||||||
raise currentExceptionAsPixieError()
|
|
||||||
result.strokeWidth = 1
|
result.strokeWidth = 1
|
||||||
result.transform = mat3()
|
result.transform = mat3()
|
||||||
result.strokeMiterLimit = defaultMiterLimit
|
result.strokeMiterLimit = defaultMiterLimit
|
||||||
result.opacity = 1
|
result.opacity = 1
|
||||||
|
result.fillOpacity = 1
|
||||||
result.strokeOpacity = 1
|
result.strokeOpacity = 1
|
||||||
result.linearGradients = newTable[string, LinearGradient]()
|
result.linearGradients = newTable[string, LinearGradient]()
|
||||||
|
|
||||||
|
@ -165,23 +163,9 @@ proc parseSvgProperties(node: XmlNode, inherited: SvgProperties): SvgProperties
|
||||||
)
|
)
|
||||||
|
|
||||||
if fill == "" or fill == "currentColor":
|
if fill == "" or fill == "currentColor":
|
||||||
discard # Inherit
|
result.fill = inherited.fill
|
||||||
elif fill == "none":
|
|
||||||
result.fill = ColorRGBX()
|
|
||||||
elif fill.startsWith("url("):
|
|
||||||
let id = fill[5 .. ^2]
|
|
||||||
if id in result.linearGradients:
|
|
||||||
let linearGradient = result.linearGradients[id]
|
|
||||||
result.fill = newPaint(LinearGradientPaint)
|
|
||||||
result.fill.gradientHandlePositions = @[
|
|
||||||
result.transform * vec2(linearGradient.x1, linearGradient.y1),
|
|
||||||
result.transform * vec2(linearGradient.x2, linearGradient.y2)
|
|
||||||
]
|
|
||||||
result.fill.gradientStops = linearGradient.stops
|
|
||||||
else:
|
else:
|
||||||
raise newException(PixieError, "Missing SVG resource " & id)
|
result.fill = fill
|
||||||
else:
|
|
||||||
result.fill = parseHtmlColor(fill).rgbx
|
|
||||||
|
|
||||||
if stroke == "":
|
if stroke == "":
|
||||||
discard # Inherit
|
discard # Inherit
|
||||||
|
@ -194,7 +178,7 @@ proc parseSvgProperties(node: XmlNode, inherited: SvgProperties): SvgProperties
|
||||||
result.shouldStroke = true
|
result.shouldStroke = true
|
||||||
|
|
||||||
if fillOpacity.len > 0:
|
if fillOpacity.len > 0:
|
||||||
result.fill.opacity = parseFloat(fillOpacity).clamp(0, 1)
|
result.fillOpacity = parseFloat(fillOpacity).clamp(0, 1)
|
||||||
|
|
||||||
if strokeOpacity.len > 0:
|
if strokeOpacity.len > 0:
|
||||||
result.strokeOpacity = parseFloat(strokeOpacity).clamp(0, 1)
|
result.strokeOpacity = parseFloat(strokeOpacity).clamp(0, 1)
|
||||||
|
@ -321,8 +305,27 @@ proc parseSvgProperties(node: XmlNode, inherited: SvgProperties): SvgProperties
|
||||||
|
|
||||||
proc fill(img: Image, path: Path, props: SvgProperties) =
|
proc fill(img: Image, path: Path, props: SvgProperties) =
|
||||||
if props.display and props.opacity > 0:
|
if props.display and props.opacity > 0:
|
||||||
let paint = newPaint(props.fill)
|
if props.fill == "none":
|
||||||
paint.opacity = paint.opacity * props.opacity
|
return
|
||||||
|
|
||||||
|
var paint: Paint
|
||||||
|
if props.fill.startsWith("url("):
|
||||||
|
let id = props.fill[5 .. ^2]
|
||||||
|
if id in props.linearGradients:
|
||||||
|
let linearGradient = props.linearGradients[id]
|
||||||
|
paint = newPaint(LinearGradientPaint)
|
||||||
|
paint.gradientHandlePositions = @[
|
||||||
|
props.transform * vec2(linearGradient.x1, linearGradient.y1),
|
||||||
|
props.transform * vec2(linearGradient.x2, linearGradient.y2)
|
||||||
|
]
|
||||||
|
paint.gradientStops = linearGradient.stops
|
||||||
|
else:
|
||||||
|
raise newException(PixieError, "Missing SVG resource " & id)
|
||||||
|
else:
|
||||||
|
paint = parseHtmlColor(props.fill).rgbx
|
||||||
|
|
||||||
|
paint.opacity = props.fillOpacity * props.opacity
|
||||||
|
|
||||||
img.fillPath(path, paint, props.transform, props.fillRule)
|
img.fillPath(path, paint, props.transform, props.fillRule)
|
||||||
|
|
||||||
proc stroke(img: Image, path: Path, props: SvgProperties) =
|
proc stroke(img: Image, path: Path, props: SvgProperties) =
|
||||||
|
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 782 KiB After Width: | Height: | Size: 787 KiB |
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 519 KiB After Width: | Height: | Size: 519 KiB |
Before Width: | Height: | Size: 3.9 MiB After Width: | Height: | Size: 3.9 MiB |