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.
17 lines
233 B
17 lines
233 B
package images
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
)
|
|
|
|
func TestXYZ(t *testing.T) {
|
|
fname := "sample1.jpg"
|
|
|
|
dat, _ := ioutil.ReadFile(fname)
|
|
|
|
fixed_data := FixJpgOrientation(dat)
|
|
|
|
ioutil.WriteFile("fixed1.jpg", fixed_data, 0644)
|
|
|
|
}
|