com.drew.metadata.exif.ExifReader 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.
/*
* Copyright 2002-2015 Drew Noakes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* More information about this project is available at:
*
* https://drewnoakes.com/code/exif/
* https://github.com/drewnoakes/metadata-extractor
*/
package com.drew.metadata.exif;
import com.drew.imaging.jpeg.JpegSegmentMetadataReader;
import com.drew.imaging.jpeg.JpegSegmentType;
import com.drew.imaging.tiff.TiffProcessingException;
import com.drew.imaging.tiff.TiffReader;
import com.drew.lang.ByteArrayReader;
import com.drew.lang.RandomAccessReader;
import com.drew.lang.annotations.NotNull;
import com.drew.metadata.Metadata;
import java.io.IOException;
import java.util.Arrays;
/**
* Decodes Exif binary data, populating a {@link Metadata} object with tag values in {@link ExifSubIFDDirectory},
* {@link ExifThumbnailDirectory}, {@link ExifInteropDirectory}, {@link GpsDirectory} and one of the many camera
* makernote directories.
*
* @author Drew Noakes https://drewnoakes.com
*/
public class ExifReader implements JpegSegmentMetadataReader
{
/** Exif data stored in JPEG files' APP1 segment are preceded by this six character preamble. */
public static final String JPEG_SEGMENT_PREAMBLE = "Exif\0\0";
private boolean _storeThumbnailBytes = true;
public boolean isStoreThumbnailBytes()
{
return _storeThumbnailBytes;
}
public void setStoreThumbnailBytes(boolean storeThumbnailBytes)
{
_storeThumbnailBytes = storeThumbnailBytes;
}
@NotNull
public Iterable getSegmentTypes()
{
return Arrays.asList(JpegSegmentType.APP1);
}
public void readJpegSegments(@NotNull final Iterable segments, @NotNull final Metadata metadata, @NotNull final JpegSegmentType segmentType)
{
assert(segmentType == JpegSegmentType.APP1);
for (byte[] segmentBytes : segments) {
// Filter any segments containing unexpected preambles
if (segmentBytes.length < JPEG_SEGMENT_PREAMBLE.length() || !new String(segmentBytes, 0, JPEG_SEGMENT_PREAMBLE.length()).equals(JPEG_SEGMENT_PREAMBLE))
continue;
extract(new ByteArrayReader(segmentBytes), metadata, JPEG_SEGMENT_PREAMBLE.length());
}
}
/** Reads TIFF formatted Exif data from start of the specified {@link RandomAccessReader}. */
public void extract(@NotNull final RandomAccessReader reader, @NotNull final Metadata metadata)
{
extract(reader, metadata, 0);
}
/** Reads TIFF formatted Exif data a specified offset within a {@link RandomAccessReader}. */
public void extract(@NotNull final RandomAccessReader reader, @NotNull final Metadata metadata, int readerOffset)
{
try {
// Read the TIFF-formatted Exif data
new TiffReader().processTiff(
reader,
new ExifTiffHandler(metadata, _storeThumbnailBytes),
readerOffset
);
} catch (TiffProcessingException e) {
// TODO what do to with this error state?
e.printStackTrace(System.err);
} catch (IOException e) {
// TODO what do to with this error state?
e.printStackTrace(System.err);
}
}
}