Class TagDescriptor<T extends Directory>

java.lang.Object
com.drew.metadata.TagDescriptor<T>
Direct Known Subclasses:
AdobeJpegDescriptor, ExifDescriptorBase, GpsDescriptor, HuffmanTablesDescriptor, IccDescriptor, IptcDescriptor, JfifDescriptor, JpegCommentDescriptor, JpegDescriptor, Mp4Descriptor, Mp4HintDescriptor, Mp4MetaDescriptor, Mp4SoundDescriptor, Mp4TextDescriptor, Mp4UuidBoxDescriptor, Mp4VideoDescriptor, PanasonicRawDistortionDescriptor, PanasonicRawIFD0Descriptor, PanasonicRawWbInfo2Descriptor, PanasonicRawWbInfoDescriptor, PhotoshopDescriptor, PrintIMDescriptor, PsdHeaderDescriptor, XmpDescriptor

@Deprecated(since="2024-11-20") public class TagDescriptor<T extends Directory> extends Object
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
Base class for all tag descriptor classes. Implementations are responsible for providing the human-readable string representation of tag values stored in a directory. The directory is provided to the tag descriptor via its constructor.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TagDescriptor(T directory)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    convertBytesToVersionString(int[] components, int majorDigits)
    Deprecated.
    Takes a series of 4 bytes from the specified offset, and converts these to a well-known version number, where possible.
    getDescription(int tagType)
    Deprecated.
    Returns a descriptive value of the specified tag for this image.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • TagDescriptor

      public TagDescriptor(T directory)
      Deprecated.
  • Method Details

    • getDescription

      public String getDescription(int tagType)
      Deprecated.
      Returns a descriptive value of the specified tag for this image. Where possible, known values will be substituted here in place of the raw tokens actually kept in the metadata segment. If no substitution is available, the value provided by getString(tagType) will be returned.
      Parameters:
      tagType - the tag to find a description for
      Returns:
      a description of the image's value for the specified tag, or null if the tag hasn't been defined.
    • convertBytesToVersionString

      public static String convertBytesToVersionString(int[] components, int majorDigits)
      Deprecated.
      Takes a series of 4 bytes from the specified offset, and converts these to a well-known version number, where possible.

      Two different formats are processed:

      • [30 32 31 30] -> 2.10
      • [0 1 0 0] -> 1.00
      Parameters:
      components - the four version values
      majorDigits - the number of components to be
      Returns:
      the version as a string of form "2.10" or null if the argument cannot be converted