FillString fills in text at the specified location using the given font. If the font size is zero, the text is not drawn.
(f font.Face, pt Point, text string)
| 113 | // location using the given font. |
| 114 | // If the font size is zero, the text is not drawn. |
| 115 | func (tee teeCanvas) FillString(f font.Face, pt Point, text string) { |
| 116 | for _, c := range tee.cs { |
| 117 | c.FillString(f, pt, text) |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // DrawImage draws the image, scaled to fit |
| 122 | // the destination rectangle. |
nothing calls this directly
no test coverage detected