Ignore:
Timestamp:
2017-10-30T22:46:09+01:00 (8 years ago)
Author:
Don-vip
Message:

fix #15505 - update to metadata-extractor 2.10.1

File:
1 edited

Legend:

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

    r10862 r13061  
    11/*
    2  * Copyright 2002-2016 Drew Noakes
     2 * Copyright 2002-2017 Drew Noakes
    33 *
    44 *    Licensed under the Apache License, Version 2.0 (the "License");
     
    3131 * @author Drew Noakes https://drewnoakes.com
    3232 */
     33@SuppressWarnings("WeakerAccess")
    3334public abstract class ExifDirectoryBase extends Directory
    3435{
     
    126127
    127128    public static final int TAG_RESOLUTION_UNIT                   = 0x0128;
     129    public static final int TAG_PAGE_NUMBER                       = 0x0129;
     130
    128131    public static final int TAG_TRANSFER_FUNCTION                 = 0x012D;
    129132    public static final int TAG_SOFTWARE                          = 0x0131;
     
    149152    public static final int TAG_JPEG_TABLES                       = 0x015B;
    150153    public static final int TAG_JPEG_PROC                         = 0x0200;
     154
     155    // 0x0201 can have all kinds of descriptions for thumbnail starting index
     156    // 0x0202 can have all kinds of descriptions for thumbnail length
     157    public static final int TAG_JPEG_RESTART_INTERVAL = 0x0203;
     158    public static final int TAG_JPEG_LOSSLESS_PREDICTORS = 0x0205;
     159    public static final int TAG_JPEG_POINT_TRANSFORMS = 0x0206;
     160    public static final int TAG_JPEG_Q_TABLES = 0x0207;
     161    public static final int TAG_JPEG_DC_TABLES = 0x0208;
     162    public static final int TAG_JPEG_AC_TABLES = 0x0209;
    151163
    152164    public static final int TAG_YCBCR_COEFFICIENTS                = 0x0211;
     
    266278    public static final int TAG_METERING_MODE                     = 0x9207;
    267279
     280    /**
     281     * @deprecated use {@link com.drew.metadata.exif.ExifDirectoryBase#TAG_WHITE_BALANCE} instead.
     282     */
     283    @Deprecated
     284    public static final int TAG_LIGHT_SOURCE                      = 0x9208;
    268285    /**
    269286     * White balance (aka light source). '0' means unknown, '1' daylight,
     
    574591    public static final int TAG_GAMMA                             = 0xA500;
    575592
    576     public static final int TAG_PRINT_IM                          = 0xC4A5;
     593    public static final int TAG_PRINT_IMAGE_MATCHING_INFO         = 0xC4A5;
    577594
    578595    public static final int TAG_PANASONIC_TITLE                   = 0xC6D2;
     
    612629        map.put(TAG_PAGE_NAME, "Page Name");
    613630        map.put(TAG_RESOLUTION_UNIT, "Resolution Unit");
     631        map.put(TAG_PAGE_NUMBER, "Page Number");
    614632        map.put(TAG_TRANSFER_FUNCTION, "Transfer Function");
    615633        map.put(TAG_SOFTWARE, "Software");
     
    628646        map.put(TAG_JPEG_TABLES, "JPEG Tables");
    629647        map.put(TAG_JPEG_PROC, "JPEG Proc");
     648
     649        map.put(TAG_JPEG_RESTART_INTERVAL, "JPEG Restart Interval");
     650        map.put(TAG_JPEG_LOSSLESS_PREDICTORS, "JPEG Lossless Predictors");
     651        map.put(TAG_JPEG_POINT_TRANSFORMS, "JPEG Point Transforms");
     652        map.put(TAG_JPEG_Q_TABLES, "JPEGQ Tables");
     653        map.put(TAG_JPEG_DC_TABLES, "JPEGDC Tables");
     654        map.put(TAG_JPEG_AC_TABLES, "JPEGAC Tables");
     655
    630656        map.put(TAG_YCBCR_COEFFICIENTS, "YCbCr Coefficients");
    631657        map.put(TAG_YCBCR_SUBSAMPLING, "YCbCr Sub-Sampling");
     
    730756        map.put(TAG_LENS_SERIAL_NUMBER, "Lens Serial Number");
    731757        map.put(TAG_GAMMA, "Gamma");
    732         map.put(TAG_PRINT_IM, "Print IM");
     758        map.put(TAG_PRINT_IMAGE_MATCHING_INFO, "Print Image Matching (PIM) Info");
    733759        map.put(TAG_PANASONIC_TITLE, "Panasonic Title");
    734760        map.put(TAG_PANASONIC_TITLE_2, "Panasonic Title (2)");
Note: See TracChangeset for help on using the changeset viewer.