label-tool: show the font name

This commit is contained in:
Přemysl Eric Janouch 2019-04-12 23:56:11 +02:00
parent b782686063
commit b2733bf3fd
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 5 additions and 0 deletions

View File

@ -151,6 +151,9 @@ var tmpl = template.Must(template.New("form").Parse(`
<p>Error: {{ .PrinterErr }}
{{ end }}
</fieldset>
<fieldset>
<p>Font: {{ .Font.Name }}
</fieldset>
<form><fieldset>
<p><label for=text>Text:</label>
<input id=text name=text value='{{.Text}}'>
@ -215,6 +218,7 @@ func handle(w http.ResponseWriter, r *http.Request) {
PrinterErr error
InitErr error
MediaInfo *ql.MediaInfo
Font *bdf.Font
Text string
Scale int
}{
@ -222,6 +226,7 @@ func handle(w http.ResponseWriter, r *http.Request) {
PrinterErr: printerErr,
InitErr: initErr,
MediaInfo: mediaInfo,
Font: font,
Text: r.FormValue("text"),
}