Versions in this module Expand all Collapse all v0 v0.0.1 Nov 20, 2024 Changes in this version + type Drawer interface + DrawFace func(rectangle image.Rectangle, name string) + SaveImage func(path string) error + func NewDrawer(imagePath, fontPath string) Drawer + type DrawerImpl struct + func (d *DrawerImpl) DrawFace(rectangle image.Rectangle, name string) + func (d *DrawerImpl) SaveImage(path string) error + type Person struct + ID int + ImagesPath []string + Name string + func NewPerson(id int, name string, imagesPath []string) *Person