Bear Su

Results 3 comments of Bear Su

I found a solution here: https://www.reddit.com/r/golang/comments/14ldjiu/problems_with_drawing_fonts_onto_an_image/ Use https://github.com/goki/freetype to load font instead of using https://github.com/golang/freetype. ```golang import ( "github.com/goki/freetype" "github.com/goki/freetype/truetype" ... ) // Load font with goki freetype func loadFontFace(path...

Thanks @Psycho7, I updated the sample.