go-chart/raster_renderer.go

141 lines
3.3 KiB
Go
Raw Normal View History

2016-07-07 03:54:00 +02:00
package chart
import (
"image"
"image/color"
"image/png"
"io"
"github.com/golang/freetype/truetype"
2016-07-09 02:57:14 +02:00
"github.com/wcharczuk/go-chart/drawing"
2016-07-07 03:54:00 +02:00
)
// PNG returns a new png/raster renderer.
2016-07-09 02:57:14 +02:00
func PNG(width, height int) (Renderer, error) {
2016-07-07 03:54:00 +02:00
i := image.NewRGBA(image.Rect(0, 0, width, height))
2016-07-09 02:57:14 +02:00
gc, err := drawing.NewRasterGraphicContext(i)
if err == nil {
return &rasterRenderer{
i: i,
gc: gc,
}, nil
2016-07-07 03:54:00 +02:00
}
2016-07-09 02:57:14 +02:00
return nil, err
2016-07-07 03:54:00 +02:00
}
2016-07-08 07:18:53 +02:00
// rasterRenderer renders chart commands to a bitmap.
2016-07-07 03:54:00 +02:00
type rasterRenderer struct {
i *image.RGBA
2016-07-09 02:57:14 +02:00
gc *drawing.RasterGraphicContext
2016-07-07 03:54:00 +02:00
fontSize float64
2016-07-09 02:57:14 +02:00
fontColor color.RGBA
f *truetype.Font
}
// SetDPI implements the interface method.
func (rr *rasterRenderer) SetDPI(dpi float64) {
rr.gc.SetDPI(dpi)
2016-07-07 03:54:00 +02:00
}
// SetStrokeColor implements the interface method.
func (rr *rasterRenderer) SetStrokeColor(c color.RGBA) {
rr.gc.SetStrokeColor(c)
}
// SetFillColor implements the interface method.
func (rr *rasterRenderer) SetFillColor(c color.RGBA) {
rr.gc.SetFillColor(c)
}
// SetLineWidth implements the interface method.
2016-07-08 07:18:53 +02:00
func (rr *rasterRenderer) SetStrokeWidth(width float64) {
2016-07-07 23:44:03 +02:00
rr.gc.SetLineWidth(width)
2016-07-07 03:54:00 +02:00
}
// MoveTo implements the interface method.
func (rr *rasterRenderer) MoveTo(x, y int) {
rr.gc.MoveTo(float64(x), float64(y))
}
// LineTo implements the interface method.
func (rr *rasterRenderer) LineTo(x, y int) {
rr.gc.LineTo(float64(x), float64(y))
}
// Close implements the interface method.
func (rr *rasterRenderer) Close() {
rr.gc.Close()
}
// Stroke implements the interface method.
func (rr *rasterRenderer) Stroke() {
rr.gc.Stroke()
}
2016-07-07 23:44:03 +02:00
// Fill implements the interface method.
func (rr *rasterRenderer) Fill() {
rr.gc.Fill()
}
2016-07-07 03:54:00 +02:00
// FillStroke implements the interface method.
func (rr *rasterRenderer) FillStroke() {
rr.gc.FillStroke()
}
// Circle implements the interface method.
func (rr *rasterRenderer) Circle(radius float64, x, y int) {
xf := float64(x)
yf := float64(y)
rr.gc.MoveTo(xf-radius, yf) //9
rr.gc.QuadCurveTo(xf, yf, xf, yf-radius) //12
rr.gc.QuadCurveTo(xf, yf, xf+radius, yf) //3
rr.gc.QuadCurveTo(xf, yf, xf, yf+radius) //6
rr.gc.QuadCurveTo(xf, yf, xf-radius, yf) //9
rr.gc.Close()
rr.gc.FillStroke()
}
// SetFont implements the interface method.
func (rr *rasterRenderer) SetFont(f *truetype.Font) {
2016-07-09 02:57:14 +02:00
rr.f = f
2016-07-07 03:54:00 +02:00
rr.gc.SetFont(f)
}
// SetFontSize implements the interface method.
func (rr *rasterRenderer) SetFontSize(size float64) {
rr.fontSize = size
rr.gc.SetFontSize(size)
}
// SetFontColor implements the interface method.
func (rr *rasterRenderer) SetFontColor(c color.RGBA) {
rr.fontColor = c
2016-07-07 23:46:52 +02:00
rr.gc.SetFillColor(c)
2016-07-07 03:54:00 +02:00
rr.gc.SetStrokeColor(c)
}
// Text implements the interface method.
func (rr *rasterRenderer) Text(body string, x, y int) {
rr.gc.CreateStringPath(body, float64(x), float64(y))
2016-07-07 23:46:52 +02:00
rr.gc.Fill()
2016-07-07 03:54:00 +02:00
}
2016-07-09 02:57:14 +02:00
// MeasureText returns the height and width in pixels of a string.
func (rr *rasterRenderer) MeasureText(body string) (width int, height int) {
l, t, r, b, err := rr.gc.GetStringBounds(body)
if err != nil {
return
2016-07-07 03:54:00 +02:00
}
2016-07-09 02:57:14 +02:00
dw := r - l
dh := b - t
width = int(drawing.PointsToPixels(rr.gc.GetDPI(), dw))
height = int(drawing.PointsToPixels(rr.gc.GetDPI(), dh))
2016-07-09 02:57:14 +02:00
return
2016-07-07 03:54:00 +02:00
}
// Save implements the interface method.
func (rr *rasterRenderer) Save(w io.Writer) error {
return png.Encode(w, rr.i)
}