aboutsummaryrefslogtreecommitdiff
path: root/cmd/bdf-preview
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-06-09 23:16:50 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-06-09 23:18:06 +0200
commit9734cdd16e1b7572464dfaed3bd03a70db46a3d3 (patch)
tree470162274d9ef41184440ac40268b55c4550b118 /cmd/bdf-preview
parent8215b59834d8a02cb43d34c55d9604dda7749cfd (diff)
downloadsklad-9734cdd16e1b7572464dfaed3bd03a70db46a3d3.tar.gz
sklad-9734cdd16e1b7572464dfaed3bd03a70db46a3d3.tar.xz
sklad-9734cdd16e1b7572464dfaed3bd03a70db46a3d3.zip
bdf: make it possible to set the drawing colour
Intended for red and black tapes.
Diffstat (limited to 'cmd/bdf-preview')
-rw-r--r--cmd/bdf-preview/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/bdf-preview/main.go b/cmd/bdf-preview/main.go
index c2edf5c..3632264 100644
--- a/cmd/bdf-preview/main.go
+++ b/cmd/bdf-preview/main.go
@@ -3,6 +3,7 @@ package main
import (
"html/template"
"image"
+ "image/color"
"image/draw"
"image/png"
"log"
@@ -82,7 +83,7 @@ func main() {
img := image.NewRGBA(super)
draw.Draw(img, super, image.White, image.ZP, draw.Src)
- font.DrawString(img, image.ZP, font.Name)
+ font.DrawString(img, image.ZP, color.Black, font.Name)
fonts[filename] = fontItem{Font: font, Preview: img}
}