1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package images import ( "io/ioutil" "os" "testing" ) func TestXYZ(t *testing.T) { fname := "sample1.jpg" dat, _ := ioutil.ReadFile(fname) fixed_data := FixJpgOrientation(dat) ioutil.WriteFile("fixed1.jpg", fixed_data, 0644) os.Remove("fixed1.jpg") }