added doc

This commit is contained in:
Erik Bunn 2022-06-27 14:17:50 +02:00
parent 1c31e40d79
commit 734c6f648d

View file

@ -23,6 +23,8 @@ func PNG(width, height int) (Renderer, error) {
return nil, err return nil, err
} }
// InMemory returns an in-memory raster renderer that calls cb() with the
// rendered image upon completion.
func InMemory(width, height int, cb func(image.Image)) (Renderer, error) { func InMemory(width, height int, cb func(image.Image)) (Renderer, error) {
i := image.NewRGBA(image.Rect(0, 0, width, height)) i := image.NewRGBA(image.Rect(0, 0, width, height))
gc, err := drawing.NewRasterGraphicContext(i) gc, err := drawing.NewRasterGraphicContext(i)