Remove debug output

This commit is contained in:
Nils Juenemann 2021-03-31 12:19:48 +02:00
parent c51a11f6d2
commit 401c985b5b
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ func resizer(buf []byte, o Options) ([]byte, error) {
shrink := calculateShrink(factor, o.Interpolator)
residual := calculateResidual(factor, shrink)
fmt.Printf("size=%vx%v, factor=%v, shrink=%v, residual=%v, opts=%+v\n", inWidth, inHeight, factor, shrink, residual, o)
// Do not enlarge the output if the input width or height
// are already less than the required dimensions
if !o.Enlarge && !o.Force {