Commit Graph

408 Commits (master)

Author SHA1 Message Date
Dustin Oprea 6579e82b73
README.md: Update commands 2023-08-26 03:28:37 -06:00
Dustin Oprea d21ac8e2de
README.md: Update count of personal pictures 2022-10-12 04:21:41 -04:00
Dustin Oprea dae547f073
Update go-utility/v2 2022-10-03 13:33:39 -04:00
Dustin Oprea de6cb6e380
v3: Update go-utility
Old revision has a poisoned sum.
2022-10-03 13:19:58 -04:00
Dustin Oprea f65986e5d0
README.md: Update badge 2022-10-03 13:14:08 -04:00
Dustin Oprea 1cd83a4e24
Limit CI to >=1.17 2022-10-03 13:02:07 -04:00
Dustin Oprea 1dda18f2dc
go.sum: Remove broken sums 2022-10-03 12:10:35 -04:00
Dustin Oprea cf5cd88aa5
Bugfix for invalid go-utility/v2 version 2022-10-03 12:05:59 -04:00
Dustin Oprea 0a0262e4b8
Cleanup modules 2022-10-03 10:30:21 -04:00
Dustin Oprea fe1174ce18
Update go-utility version 2022-10-03 10:26:28 -04:00
Dustin Oprea 0e3dba6a88
modules: Cleanup 2022-10-03 10:15:34 -04:00
Dustin Oprea 517e30a4d3
go.mod: Update to latest 2022-10-03 10:11:15 -04:00
Dustin Oprea a6301f85c8 README.md: Fix example
Fixes #61
2021-06-25 18:48:31 -04:00
Dustin Oprea 8213cfabc6 utility.go: Can now get flat from an RS. Add missing tests. 2021-05-12 01:50:20 -04:00
Dustin Oprea 120bcdb2a5 common/parser.go: Trim ASCII-NUL strings to exclude binary characters
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
2021-05-12 00:36:55 -04:00
Dustin Oprea cb1753e83a ifd_enumerate.go: Handle cycles in next-IFD offsets
Fixes #59
2021-05-12 00:20:36 -04:00
Dustin Oprea dca55bf8ca type.go: Bugfix for newlines interpreted as binary. Add tests.
Fixes #55
2021-04-28 00:20:52 -04:00
Dustin Oprea a1cb4443b2 exif.go: Log the byte-order 2021-04-27 21:40:05 -04:00
Dustin Oprea d154f10435 README.md: Add footnote about testing exposure 2021-01-31 18:11:35 -05:00
Dustin Oprea d42f8ce9cd tags.go: Add 'universal tags' support
- 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
2021-01-31 17:56:44 -05:00
Dustin Oprea 4ec6f89b9f ifd_enumerate.go: Fix warning message for unsupported type 2021-01-31 17:15:54 -05:00
Dustin Oprea 443fda923a common/type.go: Truncate ASCII strings at the first NUL
This can prevent the string from being classified as "binary" and its
value being suppressed in output.
2021-01-31 17:15:54 -05:00
Dustin Oprea 52fa399645 tags_data.go: Add some missing, should-be-supported IFD/Exif tags 2021-01-31 17:15:54 -05:00
Dustin Oprea 3089244e86 tags_data.go: Trim whitespace 2021-01-31 17:15:54 -05:00
Dustin Oprea 0d9ceeb35b exif.go: Add support for seeking to multiple EXIF blobs (SearchAndExtractExifN)
- 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
2021-01-31 17:15:48 -05:00
Dustin Oprea db167117f4 Add GeoTIFF reference 2020-12-16 17:25:38 -05:00
Wendel Hime 4382f1769b tags_data.go: add GeoTIFF support 2020-12-16 17:24:38 -05:00
Dustin Oprea 12dc66d902 Add GeoTIFF sample file
From https://www.sciencebase.gov/catalog/item/53f5a87ae4b09d12e0e8547b

Related to #52
2020-12-15 01:22:05 -05:00
Dustin Oprea 64f5c6ad03 value_context.go: Bugfix for missing float and double cases in Values()
Related to 325de3c
2020-12-15 01:18:58 -05:00
Dustin Oprea fe4ea0ee06 value_encoder_test.go: Tweak test name for correctness 2020-12-09 01:44:58 -05:00
Wendel Hime 325de3c5bb
adding float and double as types with name and size tests (#51)
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
2020-12-09 01:40:27 -05:00
Dustin Oprea b3f4f3b4b7 tags.go: Serialized adds/gets on index
https://github.com/photoprism/photoprism/issues/600
2020-11-22 01:46:30 -05:00
Dustin Oprea de21411905 common/type.go: No longer format text verbatim if has binary 2020-08-26 18:56:25 -04:00
Dustin Oprea 089aa48c91 ifd_enumerate.go: Bugfix for not skipping unknown tags 2020-08-07 03:52:13 -04:00
Dustin Oprea 74a1612f20 v3/ifd_enumerate: Skip tags that have a divergent embedded type
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
2020-07-31 04:03:32 -04:00
Dustin Oprea 33ee3a8313 ifd_enumerate.go: Do not allow unnecessary thumbnail read to disrupt enumeration 2020-07-21 23:35:36 -04:00
Dustin Oprea 3a80916d1f README.md: Update badges 2020-07-21 01:16:11 -04:00
Dustin Oprea 9393e7afd4 Upgrade from go-utility v1 to v2 2020-07-17 03:10:58 -04:00
Dustin Oprea 46b1a0cd17 ifd_enumerate.go: Add date normalization. Skip altitude if zero denominator.
Fixes #43
2020-07-17 02:39:59 -04:00
Dustin Oprea 08f1b67089 Allow compatibility with Go 1.12
- We don't require 1.13 .
2020-07-17 01:34:12 -04:00
Dustin Oprea 796ddda06f Revert ".travis.yml: Add Go 1.11 to CI"
This reverts commit 73fc50e0d0.

No good. Dependencies require 1.11 .
2020-07-17 00:58:16 -04:00
Dustin Oprea 4675ba7529 ifd_enumerate.go: Add NextIfd() accessor
- Supports go-exif-knife.
2020-07-17 00:54:38 -04:00
Dustin Oprea 73fc50e0d0 .travis.yml: Add Go 1.11 to CI 2020-07-17 00:54:17 -04:00
Dustin Oprea f93c06e0d6 v3: Fix import naming glitch 2020-07-16 21:33:45 -04:00
Dustin Oprea 0758712be3 README.md: Update badge for codecov.io 2020-07-11 14:20:15 -04:00
Dustin Oprea 208788de28 go.mod: Drop go-utility replacement and update sums 2020-07-11 14:06:20 -04:00
Dustin Oprea 32eff3cfee .travis.yml: Switch to codecov.io 2020-07-11 13:47:13 -04:00
Dustin Oprea 9e26737f70 .travis.yml: Fix CI for v2 2020-07-11 13:39:08 -04:00
Dustin Oprea 3ee774b832 README.md: Update for v3 2020-07-11 13:37:28 -04:00
Dustin Oprea d19e38a723 backwards incompatible: ifd_enumerate.go: Drop fqIfdPath and ifdIndex from visitor function signature 2020-07-11 13:15:18 -04:00