Ignore:
Timestamp:
2015-04-21T00:42:50+02:00 (11 years ago)
Author:
Don-vip
Message:

fix #11359 - update to metadata-extractor 2.8.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/drew/metadata/exif/ExifInteropDirectory.java

    r8132 r8243  
    2222
    2323import com.drew.lang.annotations.NotNull;
    24 import com.drew.metadata.Directory;
    2524
    2625import java.util.HashMap;
     
    3130 * @author Drew Noakes https://drewnoakes.com
    3231 */
    33 public class ExifInteropDirectory extends Directory
     32public class ExifInteropDirectory extends ExifDirectoryBase
    3433{
    35     public static final int TAG_INTEROP_INDEX = 0x0001;
    36     public static final int TAG_INTEROP_VERSION = 0x0002;
    37     public static final int TAG_RELATED_IMAGE_FILE_FORMAT = 0x1000;
    38     public static final int TAG_RELATED_IMAGE_WIDTH = 0x1001;
    39     public static final int TAG_RELATED_IMAGE_LENGTH = 0x1002;
    40 
    4134    @NotNull
    4235    protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>();
     
    4437    static
    4538    {
    46         _tagNameMap.put(TAG_INTEROP_INDEX, "Interoperability Index");
    47         _tagNameMap.put(TAG_INTEROP_VERSION, "Interoperability Version");
    48         _tagNameMap.put(TAG_RELATED_IMAGE_FILE_FORMAT, "Related Image File Format");
    49         _tagNameMap.put(TAG_RELATED_IMAGE_WIDTH, "Related Image Width");
    50         _tagNameMap.put(TAG_RELATED_IMAGE_LENGTH, "Related Image Length");
     39        addExifTagNames(_tagNameMap);
    5140    }
    5241
Note: See TracChangeset for help on using the changeset viewer.