pixie/examples/text_spans.nim

24 lines
848 B
Nim
Raw Normal View History

2021-05-11 21:35:44 +00:00
import pixie
let image = newImage(200, 200)
image.fill(rgba(255, 255, 255, 255))
2021-08-06 19:05:37 +00:00
let typeface = readTypeface("tests/fonts/Ubuntu-Regular_1.ttf")
2021-05-11 21:35:44 +00:00
2021-08-06 19:05:37 +00:00
proc newFont(typeface: Typeface, size: float32, color: ColorRGBA): Font =
result = newFont(typeface)
2021-05-11 21:59:53 +00:00
result.size = size
result.paint.color = color
2021-05-11 21:35:44 +00:00
let spans = @[
2021-08-06 19:05:37 +00:00
newSpan("verb [with object] ",
typeface.newFont(12, rgba(200, 200, 200, 255))),
newSpan("strallow\n", typeface.newFont(36, rgba(0, 0, 0, 255))),
newSpan("\nstral·low\n", typeface.newFont(13, rgba(0, 127, 244, 255))),
2021-05-11 22:38:05 +00:00
newSpan("\n1. free (something) from restrictive restrictions \"the regulations are intended to strallow changes in public policy\" ",
2021-08-06 19:05:37 +00:00
typeface.newFont(14, rgba(80, 80, 80, 255)))
2021-05-11 21:35:44 +00:00
]
image.fillText(typeset(spans, bounds = vec2(180, 180)), vec2(10, 10))
image.writeFile("examples/text_spans.png")