Fabian Wickborn 8dfc0d1017 Improve time zone and Geo coordinate parsing
This is a merge with
camlistore.org/third_party/github.com/rwcarlsen/goexif

Squash of the following commits:

- exif: make DateTime return time.Local location when unknown timezone
  (https://camlistore.googlesource.com/camlistore/+/a82738064436e5010268616655650ac71855668f)
- exif: add Exif.LatLong accessor
  https://camlistore.googlesource.com/camlistore/+/b6d3d1a1037260b753b914e0c07279811cc76777
- Prevent panic crash due to malformed EXIF geotags
  (https://camlistore-review.googlesource.com/#/c/3637/5)
2014-09-15 21:23:33 +02:00
2013-08-21 10:23:58 -05:00
2014-02-01 12:01:47 -06:00
2012-09-05 11:53:54 -05:00
2012-09-11 16:02:04 -05:00

goexif

Provides decoding of basic exif and tiff encoded data. Still in alpha - no guarantees. Suggestions and pull requests are welcome. Functionality is split into two packages - "exif" and "tiff" The exif package depends on the tiff package. Documentation can be found at http://godoc.org/github.com/rwcarlsen/goexif

Like goexif? - Bitcoin tips welcome: 17w65FVqx196Qp7tfCCSLqyvsHUhiEEa7P

To install, in a terminal type:

go get github.com/rwcarlsen/goexif/exif

Or if you just want the tiff package:

go get github.com/rwcarlsen/goexif/tiff

Example usage:

package main

import (
  "os"
  "log"
  "fmt"

  "github.com/rwcarlsen/goexif/exif"
)

func main() {
	fname := "sample1.jpg"

	f, err := os.Open(fname)
	if err != nil {
		log.Fatal(err)
	}

	x, err := exif.Decode(f)
	defer f.Close()
	if err != nil {
		log.Fatal(err)
	}

	camModel, _ := x.Get(exif.Model)
	date, _ := x.Get(exif.DateTimeOriginal)
	fmt.Println(camModel.StringVal())
	fmt.Println(date.StringVal())

	focal, _ := x.Get(exif.FocalLength)
	numer, denom := focal.Rat2(0) // retrieve first (only) rat. value
	fmt.Printf("%v/%v", numer, denom)
}

githalytics.com alpha

S
Description
Hanzo tenant service — sourced from hanzoai/goexif
Readme BSD-2-Clause
1.2 MiB
Languages
Go 100%