Package com.drew.metadata.iptc
Class IptcReader
java.lang.Object
com.drew.metadata.iptc.IptcReader
- All Implemented Interfaces:
JpegSegmentMetadataReader
Decodes IPTC binary data, populating a
Metadata object with tag values in an IptcDirectory.
http://www.iptc.org/std/IIM/4.1/specification/IIMV4.1.pdf
- Author:
- Drew Noakes https://drewnoakes.com
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidextract(SequentialReader reader, Metadata metadata, long length) Performs the IPTC data extraction, adding found values to the specified instance ofMetadata.voidextract(SequentialReader reader, Metadata metadata, long length, Directory parentDirectory) Performs the IPTC data extraction, adding found values to the specified instance ofMetadata.Gets the set of JPEG segment types that this reader is interested in.voidreadJpegSegments(Iterable<byte[]> segments, Metadata metadata, JpegSegmentType segmentType) Extracts metadata from all instances of a particular JPEG segment type.
-
Constructor Details
-
IptcReader
public IptcReader()
-
-
Method Details
-
getSegmentTypes
Description copied from interface:JpegSegmentMetadataReaderGets the set of JPEG segment types that this reader is interested in.- Specified by:
getSegmentTypesin interfaceJpegSegmentMetadataReader
-
readJpegSegments
public void readJpegSegments(Iterable<byte[]> segments, Metadata metadata, JpegSegmentType segmentType) Description copied from interface:JpegSegmentMetadataReaderExtracts metadata from all instances of a particular JPEG segment type.- Specified by:
readJpegSegmentsin interfaceJpegSegmentMetadataReader- 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- TheMetadataobject into which extracted values should be merged.segmentType- TheJpegSegmentTypebeing read.
-
extract
Performs the IPTC data extraction, adding found values to the specified instance ofMetadata. -
extract
public void extract(SequentialReader reader, Metadata metadata, long length, Directory parentDirectory) Performs the IPTC data extraction, adding found values to the specified instance ofMetadata.
-