This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
from 659ba2cf Bump commons-io from 2.13.0 to 2.14.0 new e1929d0a Imaging-316: Add support for BigTIFF format new 4d81bbd4 Merge branch 'apache:master' into Imaging-316 new 0277fc30 Issue-316, address review comments for pull request #318 new fa1e1be0 Merge branch 'apache:master' into Imaging-316 new cf49044b [Imaging-316] Javadoc and corrections for formatting new a3933d39 Javadoc format new 10b49a90 Merge branch 'apache:master' into Imaging-316 new 6d18d831 [Imaging-316] From code review, reorganize static imports new 192fd0ba Adjust indentation new ca7c9c09 Merge pull request #318 from gwlucastrig/Imaging-316 The 2204 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../commons/imaging/common/BinaryFunctions.java | 50 ++++++++++++ .../commons/imaging/common/ByteConversions.java | 90 +++++++++++++++++++++ .../imaging/formats/tiff/TiffDirectory.java | 2 +- .../commons/imaging/formats/tiff/TiffField.java | 67 +++++++++++++++ .../commons/imaging/formats/tiff/TiffHeader.java | 5 +- .../commons/imaging/formats/tiff/TiffReader.java | 66 +++++++++++---- .../formats/tiff/constants/TiffConstants.java | 5 ++ .../formats/tiff/fieldtypes/AbstractFieldType.java | 5 +- .../{FieldTypeLong.java => FieldTypeLong8.java} | 18 ++++- src/test/data/images/tiff/13/BigTIFF.tif | Bin 0 -> 12480 bytes src/test/data/images/tiff/13/BigTIFFLong.tif | Bin 0 -> 12480 bytes src/test/data/images/tiff/13/BigTIFFLong8.tif | Bin 0 -> 12480 bytes src/test/data/images/tiff/13/BigTIFFLong8Tiles.tif | Bin 0 -> 12564 bytes src/test/data/images/tiff/13/BigTIFFMotorola.tif | Bin 0 -> 12480 bytes .../images/tiff/13/BigTIFFMotorolaLongStrips.tif | Bin 0 -> 12480 bytes src/test/data/images/tiff/13/BigTIFFSubIFD4.tif | Bin 0 -> 31520 bytes src/test/data/images/tiff/13/BigTIFFSubIFD8.tif | Bin 0 -> 31520 bytes src/test/data/images/tiff/13/Classic.tif | Bin 0 -> 12404 bytes src/test/data/images/tiff/13/README.txt | 40 +++++++++ .../imaging/common/BinaryFileFunctionsTest.java | 11 +++ .../imaging/formats/tiff/TiffBigTiffTest.java | 82 +++++++++++++++++++ 21 files changed, 420 insertions(+), 21 deletions(-) copy src/main/java/org/apache/commons/imaging/formats/tiff/fieldtypes/{FieldTypeLong.java => FieldTypeLong8.java} (78%) create mode 100644 src/test/data/images/tiff/13/BigTIFF.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFLong.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFLong8.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFLong8Tiles.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFMotorola.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFMotorolaLongStrips.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFSubIFD4.tif create mode 100644 src/test/data/images/tiff/13/BigTIFFSubIFD8.tif create mode 100644 src/test/data/images/tiff/13/Classic.tif create mode 100644 src/test/data/images/tiff/13/README.txt create mode 100644 src/test/java/org/apache/commons/imaging/formats/tiff/TiffBigTiffTest.java