* chore: execute goimports to format the code Signed-off-by: promalert <promalert@outlook.com> * goimports -w . --------- Signed-off-by: promalert <promalert@outlook.com> Co-authored-by: Chris Lu <chris.lu@gmail.com>
25 lines
392 B
Go
25 lines
392 B
Go
package images
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func TestResizing(t *testing.T) {
|
|
fname := "sample2.webp"
|
|
|
|
dat, _ := os.ReadFile(fname)
|
|
|
|
resized, _, _ := Resized(".webp", bytes.NewReader(dat), 100, 30, "")
|
|
buf := new(bytes.Buffer)
|
|
buf.ReadFrom(resized)
|
|
|
|
util.WriteFile("resized1.png", buf.Bytes(), 0644)
|
|
|
|
os.Remove("resized1.png")
|
|
|
|
}
|