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