Merge pull request #246 from guzba/master

font can have mulitple paints but still has simple paint api for 99% …
This commit is contained in:
treeform 2021-07-18 14:08:51 -07:00 committed by GitHub
commit 928b06c693
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 43 additions and 12 deletions

View file

@ -16,7 +16,7 @@ type
typeface*: Typeface
size*: float32 ## Font size in pixels.
lineHeight*: float32 ## The line height in pixels or AutoLineHeight for the font's default line height.
paint*: Paint
paints*: seq[Paint]
textCase*: TextCase
underline*: bool ## Apply an underline.
strikethrough*: bool ## Apply a strikethrough.
@ -128,6 +128,15 @@ proc defaultLineHeight*(font: Font): float32 {.inline.} =
font.typeface.ascent - font.typeface.descent + font.typeface.lineGap
round(fontUnits * font.scale)
proc paint*(font: var Font): var Paint =
font.paints[0]
proc paint*(font: Font): lent Paint =
font.paints[0]
proc `paint=`*(font: var Font, paint: Paint) =
font.paints = @[paint]
proc newSpan*(text: string, font: Font): Span =
## Creates a span, associating a font with the text.
result = Span()
@ -478,16 +487,17 @@ proc textUber(
when stroke:
when type(target) is Image:
target.strokePath(
path,
font.paint,
transform,
strokeWidth,
lineCap,
lineJoin,
miterLimit,
dashes
)
for paint in font.paints:
target.strokePath(
path,
paint,
transform,
strokeWidth,
lineCap,
lineJoin,
miterLimit,
dashes
)
else: # target is Mask
target.strokePath(
path,
@ -500,7 +510,8 @@ proc textUber(
)
else:
when type(target) is Image:
target.fillPath(path, font.paint, transform)
for paint in font.paints:
target.fillPath(path, paint, transform)
else: # target is Mask
target.fillPath(path, transform)

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View file

@ -970,3 +970,23 @@ block:
image.fillText(arrangement, vec2(20, 20))
doDiff(image, "spans6")
block:
var font = readFont("tests/fonts/Roboto-Regular_1.ttf")
font.size = 36
var paints: seq[Paint]
paints.add(rgba(0, 0, 255, 127))
paints.add(rgba(255, 0, 0, 127))
font.paints = paints
let image = newImage(200, 100)
image.fill(rgba(255, 255, 255, 255))
image.fillText(
font,
"Multiple fills",
bounds = vec2(200, 0)
)
doDiff(image, "paints1")