Package org.apache.tika.parser.image
Class ImageMetadataExtractor
- java.lang.Object
-
- org.apache.tika.parser.image.ImageMetadataExtractor
-
public class ImageMetadataExtractor extends Object
Uses the Metadata Extractor library to read EXIF and IPTC image metadata and map to Tika fields. As of 2.4.0 the library supports jpeg and tiff. As of 2.8.0 the library supports webp.
-
-
Constructor Summary
Constructors Constructor Description ImageMetadataExtractor(Metadata metadata)ImageMetadataExtractor(Metadata metadata, org.apache.tika.parser.image.ImageMetadataExtractor.DirectoryHandler... handlers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidparseJpeg(File file)voidparseRawExif(byte[] exifData)voidparseRawExif(InputStream stream, int length, boolean needsExifHeader)voidparseRawXMP(byte[] xmpData)voidparseTiff(File file)voidparseWebP(File file)
-
-
-
Constructor Detail
-
ImageMetadataExtractor
public ImageMetadataExtractor(Metadata metadata)
- Parameters:
metadata- to extract to, using default directory handlers
-
ImageMetadataExtractor
public ImageMetadataExtractor(Metadata metadata, org.apache.tika.parser.image.ImageMetadataExtractor.DirectoryHandler... handlers)
- Parameters:
metadata- to extract tohandlers- handlers in order, note that handlers may override values from earlier handlers
-
-
Method Detail
-
parseJpeg
public void parseJpeg(File file) throws IOException, SAXException, TikaException
- Throws:
IOExceptionSAXExceptionTikaException
-
parseTiff
public void parseTiff(File file) throws IOException, SAXException, TikaException
- Throws:
IOExceptionSAXExceptionTikaException
-
parseWebP
public void parseWebP(File file) throws IOException, TikaException
- Throws:
IOExceptionTikaException
-
parseRawExif
public void parseRawExif(InputStream stream, int length, boolean needsExifHeader) throws IOException, SAXException, TikaException
- Throws:
IOExceptionSAXExceptionTikaException
-
parseRawExif
public void parseRawExif(byte[] exifData) throws IOException, SAXException, TikaException- Throws:
IOExceptionSAXExceptionTikaException
-
parseRawXMP
public void parseRawXMP(byte[] xmpData) throws IOException, SAXException, TikaException- Throws:
IOExceptionSAXExceptionTikaException
-
-