New test image.

This commit is contained in:
Michael Fogleman 2019-02-20 17:12:06 -05:00
parent 3bcf9e0320
commit 64338842c5
4 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import (
) )
func main() { func main() {
im1, err := gg.LoadPNG("examples/lenna.png") im1, err := gg.LoadPNG("examples/baboon.png")
if err != nil { if err != nil {
panic(err) panic(err)
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 463 KiB

View File

@ -7,7 +7,7 @@ import (
) )
func main() { func main() {
im, err := gg.LoadImage("examples/lenna.png") im, err := gg.LoadImage("examples/baboon.png")
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }

View File

@ -3,7 +3,7 @@ package main
import "github.com/fogleman/gg" import "github.com/fogleman/gg"
func main() { func main() {
im, err := gg.LoadPNG("examples/lenna.png") im, err := gg.LoadPNG("examples/baboon.png")
if err != nil { if err != nil {
panic(err) panic(err)
} }