Skip to content

Commit

Permalink
New test image.
Browse files Browse the repository at this point in the history
  • Loading branch information
fogleman committed Feb 20, 2019
1 parent 3bcf9e0 commit 6433884
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/concat.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
im1, err := gg.LoadPNG("examples/lenna.png")
im1, err := gg.LoadPNG("examples/baboon.png")
if err != nil {
panic(err)
}
Expand Down
Binary file removed examples/lenna.png
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/mask.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
im, err := gg.LoadImage("examples/lenna.png")
im, err := gg.LoadImage("examples/baboon.png")
if err != nil {
log.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion examples/pattern-fill.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import "github.com/fogleman/gg"

func main() {
im, err := gg.LoadPNG("examples/lenna.png")
im, err := gg.LoadPNG("examples/baboon.png")
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 6433884

Please sign in to comment.