Changeset 10862 in josm for trunk/src/com/drew/imaging/jpeg


Ignore:
Timestamp:
2016-08-20T20:58:03+02:00 (8 years ago)
Author:
Don-vip
Message:

update to metadata-extractor 2.9.1

Location:
trunk/src/com/drew/imaging/jpeg
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/drew/imaging/jpeg/JpegMetadataReader.java

    r8243 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    3939import com.drew.metadata.iptc.IptcReader;
    4040//import com.drew.metadata.jfif.JfifReader;
     41//import com.drew.metadata.jfxx.JfxxReader;
    4142import com.drew.metadata.jpeg.JpegCommentReader;
    4243import com.drew.metadata.jpeg.JpegReader;
     44//import com.drew.metadata.photoshop.DuckyReader;
    4345//import com.drew.metadata.photoshop.PhotoshopReader;
    4446//import com.drew.metadata.xmp.XmpReader;
     
    5557            new JpegCommentReader(),
    5658            //new JfifReader(),
     59            //new JfxxReader(),
    5760            new ExifReader(),
    5861            //new XmpReader(),
    5962            //new IccReader(),
    6063            //new PhotoshopReader(),
     64            //new DuckyReader(),
    6165            new IptcReader()//,
    6266            //new AdobeJpegReader()
  • trunk/src/com/drew/imaging/jpeg/JpegProcessingException.java

    r8132 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
  • trunk/src/com/drew/imaging/jpeg/JpegSegmentData.java

    r8132 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    5252     * @param segmentBytes the byte array holding data for the segment being added
    5353     */
    54     @SuppressWarnings({"MismatchedQueryAndUpdateOfCollection"})
    5554    public void addSegment(byte segmentType, @NotNull byte[] segmentBytes)
    5655    {
     
    207206     * @param occurrence  the zero-based index of the segment occurrence to remove.
    208207     */
    209     @SuppressWarnings({"MismatchedQueryAndUpdateOfCollection"})
    210208    public void removeSegmentOccurrence(@NotNull JpegSegmentType segmentType, int occurrence)
    211209    {
     
    220218     * @param occurrence  the zero-based index of the segment occurrence to remove.
    221219     */
    222     @SuppressWarnings({"MismatchedQueryAndUpdateOfCollection"})
    223220    public void removeSegmentOccurrence(byte segmentType, int occurrence)
    224221    {
  • trunk/src/com/drew/imaging/jpeg/JpegSegmentReader.java

    r8132 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    4343public class JpegSegmentReader
    4444{
     45    /**
     46     * The 0xFF byte that signals the start of a segment.
     47     */
     48    private static final byte SEGMENT_IDENTIFIER = (byte) 0xFF;
     49
    4550    /**
    4651     * Private, because this segment crashes my algorithm, and searching for it doesn't work (yet).
     
    112117            // by a 0xFF and then a byte not equal to 0x00 or 0xFF.
    113118
    114             final short segmentIdentifier = reader.getUInt8();
     119            byte segmentIdentifier = reader.getInt8();
     120            byte segmentType = reader.getInt8();
    115121
    116             // We must have at least one 0xFF byte
    117             if (segmentIdentifier != 0xFF)
    118                 throw new JpegProcessingException("Expected JPEG segment start identifier 0xFF, not 0x" + Integer.toHexString(segmentIdentifier).toUpperCase());
    119 
    120             // Read until we have a non-0xFF byte. This identifies the segment type.
    121             byte segmentType = reader.getInt8();
    122             while (segmentType == (byte)0xFF)
    123                 segmentType = reader.getInt8();
    124 
    125             if (segmentType == 0)
    126                 throw new JpegProcessingException("Expected non-zero byte as part of JPEG marker identifier");
     122            // Read until we have a 0xFF byte followed by a byte that is not 0xFF or 0x00
     123            while (segmentIdentifier != SEGMENT_IDENTIFIER || segmentType == SEGMENT_IDENTIFIER || segmentType == 0) {
     124                segmentIdentifier = segmentType;
     125                segmentType = reader.getInt8();
     126            }
    127127
    128128            if (segmentType == SEGMENT_SOS) {
  • trunk/src/com/drew/imaging/jpeg/JpegSegmentType.java

    r8132 r10862  
    11/*
    2  * Copyright 2002-2015 Drew Noakes
     2 * Copyright 2002-2016 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    3030 * An enumeration of the known segment types found in JPEG files.
    3131 *
     32 * <ul>
     33 *     <li>http://www.ozhiker.com/electronics/pjmt/jpeg_info/app_segments.html</li>
     34 *     <li>http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/JPEG.html</li>
     35 * </ul>
     36 *
    3237 * @author Drew Noakes https://drewnoakes.com
    3338 */
    3439public enum JpegSegmentType
    3540{
    36     /** APP0 JPEG segment identifier -- JFIF data (also JFXX apparently). */
     41    /** APP0 JPEG segment identifier. Commonly contains JFIF, JFXX. */
    3742    APP0((byte)0xE0, true),
    3843
    39     /** APP1 JPEG segment identifier -- where Exif data is kept. XMP data is also kept in here, though usually in a second instance. */
     44    /** APP1 JPEG segment identifier. Commonly contains Exif. XMP data is also kept in here, though usually in a second instance. */
    4045    APP1((byte)0xE1, true),
    4146
    42     /** APP2 JPEG segment identifier. */
     47    /** APP2 JPEG segment identifier. Commonly contains ICC. */
    4348    APP2((byte)0xE2, true),
    4449
     
    6469    APP9((byte)0xE9, true),
    6570
    66     /** APPA (App10) JPEG segment identifier -- can hold Unicode comments. */
     71    /** APPA (App10) JPEG segment identifier. Can contain Unicode comments, though {@link JpegSegmentType#COM} is more commonly used for comments. */
    6772    APPA((byte)0xEA, true),
    6873
     
    7378    APPC((byte)0xEC, true),
    7479
    75     /** APPD (App13) JPEG segment identifier -- IPTC data in here. */
     80    /** APPD (App13) JPEG segment identifier. Commonly contains IPTC, Photoshop data. */
    7681    APPD((byte)0xED, true),
    7782
    78     /** APPE (App14) JPEG segment identifier. */
     83    /** APPE (App14) JPEG segment identifier. Commonly contains Adobe data. */
    7984    APPE((byte)0xEE, true),
    8085
  • trunk/src/com/drew/imaging/jpeg/package.html

    r8132 r10862  
    11<!--
    2   ~ Copyright 2002-2015 Drew Noakes
     2  ~ Copyright 2002-2016 Drew Noakes
    33  ~
    44  ~    Licensed under the Apache License, Version 2.0 (the "License");
Note: See TracChangeset for help on using the changeset viewer.