Package | Description |
---|---|
com.drew.imaging.jpeg |
Provides classes for reading JPEG format data.
|
com.drew.metadata.exif |
Contains classes for extracting and modelling Exif metadata from various sources and camera manufacturers.
|
com.drew.metadata.iptc |
Contains classes for extracting and modelling IPTC metadata from various sources.
|
com.drew.metadata.jpeg |
Contains classes for extracting and modelling metadata specific to JPEG files.
|
Modifier and Type | Method and Description |
---|---|
static Metadata |
JpegMetadataReader.readMetadata(java.io.File file) |
static Metadata |
JpegMetadataReader.readMetadata(java.io.InputStream in) |
byte[] |
JpegSegmentReader.readSegment(byte segmentMarker)
Reads the first instance of a given Jpeg segment, returning the contents as
a byte array.
|
Constructor and Description |
---|
JpegSegmentReader(byte[] fileContents)
Creates a JpegSegmentReader for a byte array.
|
JpegSegmentReader(java.io.File file)
Creates a JpegSegmentReader for a specific file.
|
JpegSegmentReader(java.io.InputStream in)
Creates a JpegSegmentReader for an InputStream.
|
Constructor and Description |
---|
ExifReader(java.io.File jpegFile)
Deprecated.
Not all files will be Jpegs! Use a constructor that provides the exif segment in isolation.
|
ExifReader(java.io.InputStream jpegInputStream)
Deprecated.
Not all files will be Jpegs! Use a constructor that provides the exif segment in isolation.
|
Constructor and Description |
---|
IptcReader(java.io.File jpegFile)
Deprecated.
Not all files will be Jpegs! Use a constructor that provides the IPTC segment in isolation.
|
IptcReader(java.io.InputStream jpegInputStream)
Deprecated.
Not all files will be Jpegs! Use a constructor that provides the IPTC segment in isolation.
|
Constructor and Description |
---|
JpegCommentReader(java.io.File jpegFile)
Creates a new JpegReader for the specified Jpeg jpegFile.
|
JpegCommentReader(java.io.InputStream is)
Creates a JpegCommentReader for a JPEG stream.
|
JpegReader(java.io.File jpegFile)
Creates a new JpegReader for the specified Jpeg jpegFile.
|
JpegReader(java.io.InputStream is)
Creates a JpegReader for a JPEG stream.
|
Copyright © 2006 Drew Noakes. All Rights Reserved.