All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.drew.metadata.gif.GifHeaderDescriptor Maven / Gradle / Ivy

Go to download

Java library for extracting EXIF, IPTC, XMP, ICC and other metadata from image and video files.

There is a newer version: 2.19.0
Show newest version
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);
//        }
//    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy