mirror of https://github.com/dsoprea/go-exif.git
|
||
---|---|---|
.. | ||
assets | ||
exif-read-tool | ||
LICENSE | ||
common_test.go | ||
error.go | ||
exif.go | ||
exif_test.go | ||
go.mod | ||
go.sum | ||
gps.go | ||
ifd.go | ||
ifd_builder.go | ||
ifd_builder_encode.go | ||
ifd_builder_encode_test.go | ||
ifd_builder_test.go | ||
ifd_enumerate.go | ||
ifd_enumerate_test.go | ||
ifd_tag_entry.go | ||
ifd_tag_entry_test.go | ||
ifd_test.go | ||
parser.go | ||
readme.go | ||
tag_type.go | ||
tags.go | ||
tags_data.go | ||
tags_test.go | ||
tags_undefined.go | ||
tags_undefined_test.go | ||
type.go | ||
type_encode.go | ||
type_encode_test.go | ||
type_test.go | ||
utility.go | ||
utility_test.go | ||
value_context.go | ||
value_context_test.go |
readme.go
// exif parses raw EXIF information given a block of raw EXIF data. It can also // construct new EXIF information, and provides tools for doing so. This package // is not involved with the parsing of particular file-formats. // // The EXIF data must first be extracted and then provided to us. Conversely, // when constructing new EXIF data, the caller is responsible for packaging // this in whichever format they require. package exif