gg/examples/concat.go

31 lines
484 B
Go
Raw Normal View History

2017-07-29 00:55:21 +02:00
package main
import (
"math"
"github.com/fogleman/gg"
)
func main() {
2019-02-20 23:12:06 +01:00
im1, err := gg.LoadPNG("examples/baboon.png")
2017-07-29 00:55:21 +02:00
if err != nil {
panic(err)
}
im2, err := gg.LoadPNG("examples/gopher.png")
if err != nil {
panic(err)
}
s1 := im1.Bounds().Size()
s2 := im2.Bounds().Size()
width := int(math.Max(float64(s1.X), float64(s2.X)))
height := s1.Y + s2.Y
dc := gg.NewContext(width, height)
dc.DrawImage(im1, 0, 0)
dc.DrawImage(im2, 0, s1.Y)
dc.SavePNG("out.png")
}