24 lines
877 B
Nim
24 lines
877 B
Nim
import pixie
|
|
|
|
let image = newImage(200, 200)
|
|
image.fill(rgba(255, 255, 255, 255))
|
|
|
|
let typeface = readTypeface("examples/data/Ubuntu-Regular_1.ttf")
|
|
|
|
proc newFont(typeface: Typeface, size: float32, color: Color): Font =
|
|
result = newFont(typeface)
|
|
result.size = size
|
|
result.paint.color = color
|
|
|
|
let spans = @[
|
|
newSpan("verb [with object] ",
|
|
newFont(typeface, 12, color(0.78125, 0.78125, 0.78125, 1))),
|
|
newSpan("strallow\n", newFont(typeface, 36, color(0, 0, 0, 1))),
|
|
newSpan("\nstral·low\n", newFont(typeface, 13, color(0, 0.5, 0.953125, 1))),
|
|
newSpan("\n1. free (something) from restrictive restrictions \"the regulations are intended to strallow changes in public policy\" ",
|
|
newFont(typeface, 14, color(0.3125, 0.3125, 0.3125, 1)))
|
|
]
|
|
|
|
image.fillText(typeset(spans, vec2(180, 180)), translate(vec2(10, 10)))
|
|
image.writeFile("examples/text_spans.png")
|