Package gov.nih.mipav.model.file
Class MetadataExtractor.AdobeJpegReader
- java.lang.Object
-
- gov.nih.mipav.model.file.MetadataExtractor.AdobeJpegReader
-
- All Implemented Interfaces:
MetadataExtractor.JpegSegmentMetadataReader
- Enclosing class:
- MetadataExtractor
public class MetadataExtractor.AdobeJpegReader extends java.lang.Object implements MetadataExtractor.JpegSegmentMetadataReader
Decodes Adobe formatted data stored in JPEG files, normally in the APPE (App14) segment.- Author:
- Philip, Drew Noakes https://drewnoakes.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PREAMBLE
-
Constructor Summary
Constructors Constructor Description AdobeJpegReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
extract(MetadataExtractor.SequentialReader reader, MetadataExtractor.Metadata metadata)
java.lang.Iterable<MetadataExtractor.JpegSegmentType>
getSegmentTypes()
Gets the set of JPEG segment types that this reader is interested in.void
readJpegSegments(java.lang.Iterable<byte[]> segments, MetadataExtractor.Metadata metadata, MetadataExtractor.JpegSegmentType segmentType)
Extracts metadata from all instances of a particular JPEG segment type.
-
-
-
Field Detail
-
PREAMBLE
public static final java.lang.String PREAMBLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getSegmentTypes
public java.lang.Iterable<MetadataExtractor.JpegSegmentType> getSegmentTypes()
Description copied from interface:MetadataExtractor.JpegSegmentMetadataReader
Gets the set of JPEG segment types that this reader is interested in.- Specified by:
getSegmentTypes
in interfaceMetadataExtractor.JpegSegmentMetadataReader
-
readJpegSegments
public void readJpegSegments(java.lang.Iterable<byte[]> segments, MetadataExtractor.Metadata metadata, MetadataExtractor.JpegSegmentType segmentType)
Description copied from interface:MetadataExtractor.JpegSegmentMetadataReader
Extracts metadata from all instances of a particular JPEG segment type.- Specified by:
readJpegSegments
in interfaceMetadataExtractor.JpegSegmentMetadataReader
- Parameters:
segments
- A sequence of byte arrays from which the metadata should be extracted. These are in the order encountered in the original file.metadata
- TheMetadataExtractor.Metadata
object into which extracted values should be merged.segmentType
- TheMetadataExtractor.JpegSegmentType
being read.
-
extract
public void extract(MetadataExtractor.SequentialReader reader, MetadataExtractor.Metadata metadata)
-
-