This is for convenience. We're already ignoring whether it does or does
not have the NUL. Since having binary characters is likely an
undesireable flaw in the image and support for binary characters by EXIF
is probably just a vestigial, ridiculous feature, just stop short and
return the preceding characters if encountered. If we do actually need
the binary at some point in the future, we can circle back and
potentially add an option to do so.
Closes#55
- This will allow tags to be matched from any IFD if not found in the
primary and to go with whatever type is encoded into the tag even if
it disagrees with what is officially supported.
Supports https://github.com/dsoprea/go-exif/issues/53
- ifd_enumerate.go
- Bugfixes for various broken log messages.
- Bugfix for ErrTagNotFound not actually skipping.
- common/parser.go: Parsing ASCII now panics if there's binary (8-bit)
characters.
- utility.go: GetFlatExifData() just logs and skips these.
- exif.go: Add searchAndExtractExifWithReaderWithDiscarded(), to return
how many bytes it seeks through.
Supports https://github.com/dsoprea/go-exif/issues/53
add translate to type cases
replace float compare by Nextafter and Nextafter32
add parser for floats and doubles
add float and double parsers
add support for doubles and floats in FormatFrom functions
add ReadFloats and ReadDoubles for context
add float32 and double encoder
merging
merge
add float and double parsers
add ReadFloats and ReadDoubles for context
add float32 and double encoder
removing log alias from parser
removing log alias from parser_test
removing log alias from type
removing log alias from type_test
removing log alias from value_context
removing aliases from value_contex_test
removing log alias from value_encoder
removing log alias from value_encoder_test
update parser slices from floats and doubles
merge
update values for tests
raise exception when parsing with different expected size
This should mitigate most issues where the same tag appears multiple
times with different types. This happens more than you would think that
it would.
- ErrTagTypeNotValid is now returned unwrapped.
- This is typically the convention for static error messages.
https://github.com/photoprism/photoprism/issues/431