You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
255 B
Go
16 lines
255 B
Go
8 months ago
|
package image
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestCompressPhoto(t *testing.T) {
|
||
|
p, err := OpenImage("../bin/original.jpg")
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
p = CompressPhoto(p)
|
||
|
err = SavePhoto("../bin/compressed.jpg", p)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
}
|