com.drew.metadata.gif.GifHeaderDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metadata-extractor Show documentation
Show all versions of metadata-extractor Show documentation
Java library for extracting EXIF, IPTC, XMP, ICC and other metadata from image and video files.
package com.drew.metadata.gif;
import com.drew.lang.annotations.NotNull;
import com.drew.metadata.TagDescriptor;
/**
* @author Drew Noakes https://drewnoakes.com
*/
public class GifHeaderDescriptor extends TagDescriptor
{
public GifHeaderDescriptor(@NotNull GifHeaderDirectory directory)
{
super(directory);
}
// @Override
// public String getDescription(int tagType)
// {
// switch (tagType) {
// case GifHeaderDirectory.TAG_COMPRESSION:
// return getCompressionDescription();
// default:
// return super.getDescription(tagType);
// }
// }
}