com.drew.imaging.jpeg.JpegSegmentMetadataReader 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.imaging.jpeg;
import com.drew.lang.annotations.NotNull;
import com.drew.metadata.Metadata;
import java.util.Collection;
/**
* Defines an object that extracts metadata from in JPEG segments.
*/
public interface JpegSegmentMetadataReader
{
/**
* Gets the set of JPEG segment types that this reader is interested in.
*/
@NotNull
public Iterable getSegmentTypes();
/**
* Extracts metadata from all instances of a particular JPEG segment type.
*
* @param segments A sequence of byte arrays from which the metadata should be extracted. These are in the order
* encountered in the original file.
* @param metadata The {@link Metadata} object into which extracted values should be merged.
* @param segmentType The {@link JpegSegmentType} being read.
*/
public void readJpegSegments(@NotNull final Iterable segments, @NotNull final Metadata metadata, @NotNull final JpegSegmentType segmentType);
}