SetFeatures sets the font features (not yet supported).
(features string)
| 327 | |
| 328 | // SetFeatures sets the font features (not yet supported). |
| 329 | func (f *Font) SetFeatures(features string) { |
| 330 | f.features = features |
| 331 | } |
| 332 | |
| 333 | // Face gets the font face given by the font size in points and its style. Fill can be any of Paint, color.Color, or canvas.Pattern. |
| 334 | func (f *Font) Face(size float64, ifill any, deco ...FontDecorator) *FontFace { |