added doc
This commit is contained in:
parent
1c31e40d79
commit
734c6f648d
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue