You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
369 B
22 lines
369 B
package images
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func TestCropping(t *testing.T) {
|
|
fname := "sample1.jpg"
|
|
|
|
dat, _ := os.ReadFile(fname)
|
|
|
|
cropped, _ := Cropped(".jpg", bytes.NewReader(dat), 1072, 932, 1751, 1062)
|
|
buf := new(bytes.Buffer)
|
|
buf.ReadFrom(cropped)
|
|
|
|
util.WriteFile("cropped1.jpg", buf.Bytes(), 0644)
|
|
|
|
}
|