mirror of https://github.com/dsoprea/go-exif.git
parent
64e84ab28e
commit
7518b0882a
|
@ -1,3 +1,6 @@
|
||||||
|
[](https://travis-ci.org/dsoprea/go-exif)
|
||||||
|
[](https://coveralls.io/github/dsoprea/go-exif?branch=master)
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
This package provides native Go functionality to parse EXIF information out of images.
|
This package provides native Go functionality to parse EXIF information out of images.
|
||||||
|
|
|
@ -207,7 +207,7 @@ func TestCollect(t *testing.T) {
|
||||||
lookup := index.Lookup
|
lookup := index.Lookup
|
||||||
|
|
||||||
if rootIfd.Offset != RootIfdExifOffset {
|
if rootIfd.Offset != RootIfdExifOffset {
|
||||||
t.Fatalf("Root-IFD not correct: (0x%04d).", rootIfd)
|
t.Fatalf("Root-IFD not correct: (0x%04d).", rootIfd.Offset)
|
||||||
} else if rootIfd.Id != 0 {
|
} else if rootIfd.Id != 0 {
|
||||||
t.Fatalf("Root-IFD does not have the right ID: (%d)", rootIfd.Id)
|
t.Fatalf("Root-IFD does not have the right ID: (%d)", rootIfd.Id)
|
||||||
} else if tree[0] != rootIfd {
|
} else if tree[0] != rootIfd {
|
||||||
|
|
Loading…
Reference in New Issue