예제 #1
0
파일: example_test.go 프로젝트: hawx/img
func ExampleCopying() {
	exif.Load("test.jpg").Write("other.jpg")
}
예제 #2
0
파일: example_test.go 프로젝트: hawx/img
func ExampleReading() {
	data := exif.Load("test.jpg")
	fmt.Println(exif.Get("UserComment"))
}
예제 #3
0
파일: example_test.go 프로젝트: hawx/img
func ExampleModification() {
	data := exif.Load("test.jpg")
	exif.Set("UserComment", "Nice test photo")
	exif.Save()
}