11 lines
198 B
Go
11 lines
198 B
Go
// Package caption provides a caption rendering interface that prioritises ease of use.
|
|
package caption
|
|
|
|
import (
|
|
"golang.org/x/image/font/gofont/goregular"
|
|
)
|
|
|
|
var (
|
|
defaultFont = goregular.TTF
|
|
)
|