You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2019/11/02 22:14:39 UTC

[commons-imaging] branch master updated (deefaf6 -> 94ba1de)

This is an automated email from the ASF dual-hosted git repository.

kinow pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git.


    from deefaf6  Merge branch 'pr-8'
     new f8435b0  Add support to read multiple images from GIF
     new d747715  Fix issues in PR and add a test
     new 665ee6b  Remove trailing spaces
     new a78cb30  Add comment and suppress warning for internal code
     new 94ba1de  Merge pull request #55 from christoffer-rydberg/master

The 1150 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:
 .../gif/{GifBlock.java => GifImageData.java}       |  10 +-
 .../imaging/formats/gif/GifImageMetadata.java      |  65 +++++++++
 .../imaging/formats/gif/GifImageMetadataItem.java  |  54 +++++++
 .../imaging/formats/gif/GifImageParser.java        | 158 ++++++++++++++++-----
 .../commons/imaging/formats/gif/GifReadTest.java   |  35 ++++-
 5 files changed, 279 insertions(+), 43 deletions(-)
 copy src/main/java/org/apache/commons/imaging/formats/gif/{GifBlock.java => GifImageData.java} (78%)
 create mode 100644 src/main/java/org/apache/commons/imaging/formats/gif/GifImageMetadata.java
 create mode 100644 src/main/java/org/apache/commons/imaging/formats/gif/GifImageMetadataItem.java