gg/context.go

451 lines
9.0 KiB
Go
Raw Normal View History

2016-02-19 15:43:37 +01:00
package gg
2016-02-18 22:02:57 +01:00
import (
"image"
"image/color"
"image/draw"
2016-02-19 04:11:53 +01:00
"math"
2016-02-18 22:02:57 +01:00
"github.com/golang/freetype/raster"
2016-02-19 04:53:47 +01:00
"golang.org/x/image/font"
"golang.org/x/image/font/basicfont"
2016-02-18 22:02:57 +01:00
"golang.org/x/image/math/fixed"
)
type LineCap int
const (
LineCapRound LineCap = iota
LineCapButt
LineCapSquare
)
type LineJoin int
const (
LineJoinRound LineJoin = iota
LineJoinBevel
)
2016-02-19 03:30:17 +01:00
type FillRule int
const (
FillRuleWinding FillRule = iota
FillRuleEvenOdd
)
2016-02-18 22:02:57 +01:00
type Context struct {
2016-02-19 20:03:52 +01:00
width int
height int
im *image.RGBA
color color.Color
2016-02-20 21:10:16 +01:00
strokePath raster.Path
fillPath raster.Path
2016-02-19 20:03:52 +01:00
start fixed.Point26_6
lineWidth float64
lineCap LineCap
lineJoin LineJoin
fillRule FillRule
fontFace font.Face
fontHeight float64
matrix Matrix
stack []*Context
2016-02-18 22:02:57 +01:00
}
func NewContext(width, height int) *Context {
2016-02-19 17:07:25 +01:00
return NewContextForRGBA(image.NewRGBA(image.Rect(0, 0, width, height)))
}
func NewContextForImage(im image.Image) *Context {
return NewContextForRGBA(imageToRGBA(im))
}
func NewContextForRGBA(im *image.RGBA) *Context {
2016-02-18 22:02:57 +01:00
return &Context{
2016-02-19 20:03:52 +01:00
width: im.Bounds().Size().X,
height: im.Bounds().Size().Y,
im: im,
color: color.Transparent,
lineWidth: 1,
fillRule: FillRuleWinding,
fontFace: basicfont.Face7x13,
fontHeight: 13,
matrix: Identity(),
2016-02-18 22:02:57 +01:00
}
}
2016-02-19 04:11:53 +01:00
func (dc *Context) Image() image.Image {
return dc.im
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) Width() int {
return dc.width
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) Height() int {
return dc.height
2016-02-18 22:02:57 +01:00
}
2016-02-19 19:54:55 +01:00
func (dc *Context) SavePNG(path string) error {
2016-02-19 19:49:03 +01:00
return SavePNG(path, dc.im)
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetLineWidth(lineWidth float64) {
dc.lineWidth = lineWidth
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetLineCap(lineCap LineCap) {
dc.lineCap = lineCap
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:20:50 +01:00
func (dc *Context) SetLineCapRound() {
dc.lineCap = LineCapRound
}
func (dc *Context) SetLineCapButt() {
dc.lineCap = LineCapButt
}
func (dc *Context) SetLineCapSquare() {
dc.lineCap = LineCapSquare
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetLineJoin(lineJoin LineJoin) {
dc.lineJoin = lineJoin
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:20:50 +01:00
func (dc *Context) SetLineJoinRound() {
dc.lineJoin = LineJoinRound
}
func (dc *Context) SetLineJoinBevel() {
dc.lineJoin = LineJoinBevel
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetFillRule(fillRule FillRule) {
dc.fillRule = fillRule
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:20:50 +01:00
func (dc *Context) SetFillRuleWinding() {
dc.fillRule = FillRuleWinding
}
func (dc *Context) SetFillRuleEvenOdd() {
dc.fillRule = FillRuleEvenOdd
}
2016-02-19 17:07:25 +01:00
// Color Setters
func (dc *Context) SetColor(c color.Color) {
dc.color = c
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetHexColor(x string) {
r, g, b := parseHexColor(x)
dc.SetRGB255(r, g, b)
}
func (dc *Context) SetRGBA255(r, g, b, a int) {
dc.color = color.NRGBA{uint8(r), uint8(g), uint8(b), uint8(a)}
}
func (dc *Context) SetRGB255(r, g, b int) {
dc.SetRGBA255(r, g, b, 255)
}
func (dc *Context) SetRGBA(r, g, b, a float64) {
dc.color = color.NRGBA{
uint8(r * 255),
uint8(g * 255),
uint8(b * 255),
uint8(a * 255),
2016-02-18 22:02:57 +01:00
}
}
2016-02-19 17:07:25 +01:00
func (dc *Context) SetRGB(r, g, b float64) {
dc.SetRGBA(r, g, b, 1)
2016-02-19 03:30:17 +01:00
}
2016-02-19 17:07:25 +01:00
// Path Manipulation
2016-02-19 04:11:53 +01:00
func (dc *Context) MoveTo(x, y float64) {
2016-02-20 21:10:16 +01:00
if len(dc.fillPath) > 0 {
dc.fillPath.Add1(dc.start)
}
2016-02-19 19:16:40 +01:00
x, y = dc.TransformPoint(x, y)
2016-02-19 04:11:53 +01:00
dc.start = fp(x, y)
2016-02-20 21:10:16 +01:00
dc.strokePath.Start(dc.start)
dc.fillPath.Start(dc.start)
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) LineTo(x, y float64) {
2016-02-19 19:16:40 +01:00
x, y = dc.TransformPoint(x, y)
2016-02-20 21:10:16 +01:00
if len(dc.strokePath) == 0 {
2016-02-19 04:11:53 +01:00
dc.MoveTo(x, y)
2016-02-19 03:30:17 +01:00
} else {
2016-02-20 21:10:16 +01:00
p := fp(x, y)
dc.strokePath.Add1(p)
dc.fillPath.Add1(p)
2016-02-19 03:30:17 +01:00
}
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) QuadraticTo(x1, y1, x2, y2 float64) {
2016-02-19 19:16:40 +01:00
x1, y1 = dc.TransformPoint(x1, y1)
x2, y2 = dc.TransformPoint(x2, y2)
2016-02-20 21:10:16 +01:00
if len(dc.strokePath) == 0 {
2016-02-19 04:11:53 +01:00
dc.MoveTo(x1, y1)
2016-02-19 03:30:17 +01:00
} else {
2016-02-20 21:10:16 +01:00
p1 := fp(x1, y1)
p2 := fp(x2, y2)
dc.strokePath.Add2(p1, p2)
dc.fillPath.Add2(p1, p2)
2016-02-19 03:30:17 +01:00
}
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) ClosePath() {
2016-02-20 21:10:16 +01:00
if len(dc.strokePath) > 0 {
dc.strokePath.Add1(dc.start)
dc.fillPath.Add1(dc.start)
2016-02-19 03:30:17 +01:00
}
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:07:25 +01:00
func (dc *Context) ClearPath() {
2016-02-20 21:10:16 +01:00
dc.strokePath.Clear()
dc.fillPath.Clear()
2016-02-18 22:02:57 +01:00
}
2016-02-19 17:07:25 +01:00
// Path Drawing
2016-02-20 02:54:59 +01:00
func (dc *Context) capper() raster.Capper {
2016-02-19 17:07:25 +01:00
switch dc.lineCap {
case LineCapButt:
2016-02-20 02:54:59 +01:00
return raster.ButtCapper
2016-02-19 17:07:25 +01:00
case LineCapRound:
2016-02-20 02:54:59 +01:00
return raster.RoundCapper
2016-02-19 17:07:25 +01:00
case LineCapSquare:
2016-02-20 02:54:59 +01:00
return raster.SquareCapper
2016-02-19 17:07:25 +01:00
}
2016-02-20 02:54:59 +01:00
return nil
}
func (dc *Context) joiner() raster.Joiner {
2016-02-19 17:07:25 +01:00
switch dc.lineJoin {
case LineJoinBevel:
2016-02-20 02:54:59 +01:00
return raster.BevelJoiner
2016-02-19 17:07:25 +01:00
case LineJoinRound:
2016-02-20 02:54:59 +01:00
return raster.RoundJoiner
2016-02-19 17:07:25 +01:00
}
2016-02-20 02:54:59 +01:00
return nil
}
func (dc *Context) StrokePreserve() {
2016-02-19 04:11:53 +01:00
painter := raster.NewRGBAPainter(dc.im)
painter.SetColor(dc.color)
r := raster.NewRasterizer(dc.width, dc.height)
2016-02-18 22:02:57 +01:00
r.UseNonZeroWinding = true
2016-02-20 21:10:16 +01:00
r.AddStroke(dc.strokePath, fi(dc.lineWidth), dc.capper(), dc.joiner())
2016-02-18 22:02:57 +01:00
r.Rasterize(painter)
}
2016-02-19 04:11:53 +01:00
func (dc *Context) Stroke() {
dc.StrokePreserve()
2016-02-19 17:07:25 +01:00
dc.ClearPath()
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) FillPreserve() {
2016-02-20 21:10:16 +01:00
var path raster.Path
if len(dc.fillPath) > 0 {
path = make(raster.Path, len(dc.fillPath))
copy(path, dc.fillPath)
path.Add1(dc.start)
}
2016-02-19 04:11:53 +01:00
painter := raster.NewRGBAPainter(dc.im)
painter.SetColor(dc.color)
r := raster.NewRasterizer(dc.width, dc.height)
r.UseNonZeroWinding = dc.fillRule == FillRuleWinding
2016-02-20 21:10:16 +01:00
r.AddPath(path)
2016-02-18 22:02:57 +01:00
r.Rasterize(painter)
}
2016-02-19 04:11:53 +01:00
func (dc *Context) Fill() {
dc.FillPreserve()
2016-02-19 17:07:25 +01:00
dc.ClearPath()
2016-02-19 04:11:53 +01:00
}
2016-02-19 04:53:47 +01:00
// Convenient Drawing Functions
2016-02-19 17:07:25 +01:00
func (dc *Context) Clear() {
2016-02-20 03:00:56 +01:00
src := image.NewUniform(dc.color)
draw.Draw(dc.im, dc.im.Bounds(), src, image.ZP, draw.Src)
2016-02-19 17:07:25 +01:00
}
2016-02-19 04:11:53 +01:00
func (dc *Context) DrawLine(x1, y1, x2, y2 float64) {
dc.MoveTo(x1, y1)
dc.LineTo(x2, y2)
}
2016-02-19 17:07:25 +01:00
func (dc *Context) DrawRectangle(x, y, w, h float64) {
dc.MoveTo(x, y)
dc.LineTo(x+w, y)
dc.LineTo(x+w, y+h)
dc.LineTo(x, y+h)
dc.LineTo(x, y)
}
2016-02-20 03:15:22 +01:00
func (dc *Context) DrawRoundedRectangle(x, y, w, h, r float64) {
x0, x1, x2, x3 := x, x+r, x+w-r, x+w
y0, y1, y2, y3 := y, y+r, y+h-r, y+h
dc.MoveTo(x1, y0)
dc.LineTo(x2, y0)
dc.DrawArc(x2, y1, r, Radians(270), Radians(360))
dc.LineTo(x3, y2)
dc.DrawArc(x2, y2, r, Radians(0), Radians(90))
dc.LineTo(x1, y3)
dc.DrawArc(x1, y2, r, Radians(90), Radians(180))
dc.LineTo(x0, y1)
dc.DrawArc(x1, y1, r, Radians(180), Radians(270))
}
2016-02-19 17:07:25 +01:00
func (dc *Context) DrawEllipticalArc(x, y, rx, ry, angle1, angle2 float64) {
2016-02-19 04:11:53 +01:00
const n = 16
2016-02-20 02:46:19 +01:00
for i := 0; i < n; i++ {
2016-02-19 04:11:53 +01:00
p1 := float64(i+0) / n
p2 := float64(i+1) / n
a1 := angle1 + (angle2-angle1)*p1
a2 := angle1 + (angle2-angle1)*p2
x0 := x + rx*math.Cos(a1)
y0 := y + ry*math.Sin(a1)
x1 := x + rx*math.Cos(a1+(a2-a1)/2)
y1 := y + ry*math.Sin(a1+(a2-a1)/2)
x2 := x + rx*math.Cos(a2)
y2 := y + ry*math.Sin(a2)
cx := 2*x1 - x0/2 - x2/2
cy := 2*y1 - y0/2 - y2/2
if i == 0 {
dc.MoveTo(x0, y0)
}
dc.QuadraticTo(cx, cy, x2, y2)
}
}
func (dc *Context) DrawEllipse(x, y, rx, ry float64) {
2016-02-19 17:07:25 +01:00
dc.DrawEllipticalArc(x, y, rx, ry, 0, 2*math.Pi)
2016-02-19 04:11:53 +01:00
}
func (dc *Context) DrawArc(x, y, r, angle1, angle2 float64) {
2016-02-19 17:07:25 +01:00
dc.DrawEllipticalArc(x, y, r, r, angle1, angle2)
2016-02-19 04:11:53 +01:00
}
func (dc *Context) DrawCircle(x, y, r float64) {
2016-02-19 17:07:25 +01:00
dc.DrawEllipticalArc(x, y, r, r, 0, 2*math.Pi)
2016-02-18 22:02:57 +01:00
}
2016-02-19 04:53:47 +01:00
2016-02-19 19:49:03 +01:00
func (dc *Context) DrawImage(im image.Image, x, y int) {
2016-02-20 03:35:56 +01:00
dc.DrawImageAnchored(im, x, y, 0, 0)
}
func (dc *Context) DrawImageAnchored(im image.Image, x, y int, ax, ay float64) {
s := im.Bounds().Size()
x -= int(ax * float64(s.X))
y -= int(ay * float64(s.Y))
2016-02-19 19:49:03 +01:00
p := image.Pt(x, y)
2016-02-20 03:35:56 +01:00
r := image.Rectangle{p, p.Add(s)}
2016-02-20 00:33:15 +01:00
draw.Draw(dc.im, r, im, image.ZP, draw.Over)
2016-02-19 19:49:03 +01:00
}
2016-02-19 04:53:47 +01:00
// Text Functions
func (dc *Context) SetFontFace(fontFace font.Face) {
dc.fontFace = fontFace
}
2016-02-19 20:03:52 +01:00
func (dc *Context) LoadFontFace(path string, points float64) {
dc.fontFace = loadFontFace(path, points)
dc.fontHeight = points * 72 / 96
2016-02-19 04:53:47 +01:00
}
2016-02-20 03:35:56 +01:00
func (dc *Context) DrawString(s string, x, y float64) {
dc.DrawStringAnchored(s, x, y, 0, 0)
}
func (dc *Context) DrawStringAnchored(s string, x, y, ax, ay float64) {
w, h := dc.MeasureString(s)
x -= ax * w
y += ay * h
2016-02-19 19:16:40 +01:00
x, y = dc.TransformPoint(x, y)
2016-02-19 04:53:47 +01:00
d := &font.Drawer{
Dst: dc.im,
Src: image.NewUniform(dc.color),
Face: dc.fontFace,
Dot: fp(x, y),
}
d.DrawString(s)
}
2016-02-19 20:03:52 +01:00
func (dc *Context) MeasureString(s string) (w, h float64) {
2016-02-19 04:53:47 +01:00
d := &font.Drawer{
Face: dc.fontFace,
}
a := d.MeasureString(s)
2016-02-19 20:03:52 +01:00
return float64(a >> 6), dc.fontHeight
2016-02-19 04:53:47 +01:00
}
2016-02-19 19:16:40 +01:00
// Transformation Matrix Operations
func (dc *Context) Identity() {
dc.matrix = Identity()
}
func (dc *Context) Translate(x, y float64) {
dc.matrix = dc.matrix.Translate(x, y)
}
func (dc *Context) Scale(x, y float64) {
dc.matrix = dc.matrix.Scale(x, y)
}
2016-02-20 20:45:17 +01:00
func (dc *Context) ScaleAbout(sx, sy, x, y float64) {
dc.matrix = dc.matrix.ScaleAbout(sx, sy, x, y)
}
2016-02-19 19:16:40 +01:00
func (dc *Context) Rotate(angle float64) {
dc.matrix = dc.matrix.Rotate(angle)
}
func (dc *Context) RotateAbout(angle, x, y float64) {
dc.matrix = dc.matrix.RotateAbout(angle, x, y)
}
func (dc *Context) Shear(x, y float64) {
dc.matrix = dc.matrix.Shear(x, y)
}
2016-02-20 20:53:33 +01:00
func (dc *Context) ShearAbout(sx, sy, x, y float64) {
dc.matrix = dc.matrix.ShearAbout(sx, sy, x, y)
}
2016-02-19 19:16:40 +01:00
func (dc *Context) TransformPoint(x, y float64) (tx, ty float64) {
return dc.matrix.TransformPoint(x, y)
}
2016-02-19 19:34:04 +01:00
2016-02-20 03:00:56 +01:00
func (dc *Context) InvertY() {
dc.Translate(0, float64(dc.height))
dc.Scale(1, -1)
}
2016-02-19 19:34:04 +01:00
// Stack
func (dc *Context) Push() {
2016-02-19 20:10:39 +01:00
x := *dc
dc.stack = append(dc.stack, &x)
2016-02-19 19:34:04 +01:00
}
func (dc *Context) Pop() {
2016-02-20 01:45:49 +01:00
before := *dc
2016-02-19 19:34:04 +01:00
s := dc.stack
x, s := s[len(s)-1], s[:len(s)-1]
2016-02-19 20:10:39 +01:00
*dc = *x
2016-02-20 21:10:16 +01:00
dc.strokePath = before.strokePath
dc.fillPath = before.fillPath
2016-02-19 19:34:04 +01:00
}