Skip to content

Commit

Permalink
removed intrusive log
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Biessek committed Mar 26, 2018
1 parent fd07bbc commit d348d9e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"io"

bmp "github.com/jsummers/gobmp"
"log"
)

func init() {
Expand Down Expand Up @@ -117,7 +116,6 @@ func (d *decoder) decode(r io.Reader) (err error) {
return err
}
bounds := d.images[i].Bounds()
log.Printf("bounds %v\n", bounds)
mask := image.NewAlpha(image.Rect(0, 0, bounds.Dx(), bounds.Dy()))
masked := image.NewNRGBA(image.Rect(0, 0, bounds.Dx(), bounds.Dy()))
for row := 0; row < int(e.Height); row++ {
Expand Down

0 comments on commit d348d9e

Please sign in to comment.