Esempio n. 1
0
func ExampleCopying() {
	exif.Load("test.jpg").Write("other.jpg")
}
Esempio n. 2
0
func ExampleReading() {
	data := exif.Load("test.jpg")
	fmt.Println(exif.Get("UserComment"))
}
Esempio n. 3
0
func ExampleModification() {
	data := exif.Load("test.jpg")
	exif.Set("UserComment", "Nice test photo")
	exif.Save()
}