- All Implemented Interfaces:
Cloneable
public final class TIFFField extends Object implements Cloneable
A field in a TIFF Image File Directory (IFD) is defined as a
tag number accompanied by a sequence of values of identical data type.
TIFF 6.0 defines 12 data types; a 13th type IFD
is
defined in TIFF Tech Note 1 of TIFF Specification Supplement 1. These
TIFF data types are referred to by Java constants and mapped internally
onto Java language data types and type names as follows:
TIFF Data Type | Java Constant | Java Data Type | Java Type Name |
---|---|---|---|
BYTE
| TIFFTag.TIFF_BYTE
| byte
| "Byte"
|
ASCII
| TIFFTag.TIFF_ASCII
| String
| "Ascii"
|
SHORT
| TIFFTag.TIFF_SHORT
| char
| "Short"
|
LONG
| TIFFTag.TIFF_LONG
| long
| "Long"
|
RATIONAL
| TIFFTag.TIFF_RATIONAL
| long[2] {numerator, denominator}
| "Rational"
|
SBYTE
| TIFFTag.TIFF_SBYTE
| byte
| "SByte"
|
UNDEFINED
| TIFFTag.TIFF_UNDEFINED
| byte
| "Undefined"
|
SSHORT
| TIFFTag.TIFF_SSHORT
| short
| "SShort"
|
SLONG
| TIFFTag.TIFF_SLONG
| int
| "SLong"
|
SRATIONAL
| TIFFTag.TIFF_SRATIONAL
| int[2] {numerator, denominator}
| "SRational"
|
FLOAT
| TIFFTag.TIFF_FLOAT
| float
| "Float"
|
DOUBLE
| TIFFTag.TIFF_DOUBLE
| double
| "Double"
|
IFD
| TIFFTag.TIFF_IFD_POINTER
| long
| "IFDPointer"
|
- Since:
- 9
- See Also:
TIFFDirectory
,TIFFTag
-
Constructor Summary
Constructors Constructor Description TIFFField(TIFFTag tag, int type, int count)
Constructs a data array usingcreateArrayForType()
and invokesTIFFField(TIFFTag,int,int,Object)
with the supplied parameters and the created array.TIFFField(TIFFTag tag, int type, int count, Object data)
Constructs aTIFFField
with arbitrary data.TIFFField(TIFFTag tag, int type, long offset, TIFFDirectory dir)
Constructs aTIFFField
with an IFD offset and contents.TIFFField(TIFFTag tag, long value)
Constructs aTIFFField
with a single non-negative integral value. -
Method Summary
Modifier and Type Method Description TIFFField
clone()
Clones the field and all the information contained therein.static Object
createArrayForType(int dataType, int count)
Creates an array appropriate for the indicated data type.static TIFFField
createFromMetadataNode(TIFFTagSet tagSet, Node node)
Creates aTIFFField
from a TIFF native image metadata node.byte[]
getAsBytes()
Returns the data as an uninterpreted array ofbyte
s.char[]
getAsChars()
ReturnsTIFFTag.TIFF_SHORT
data as an array ofchar
s (unsigned 16-bit integers).double
getAsDouble(int index)
Returns data in any format as adouble
.double[]
getAsDoubles()
ReturnsTIFFTag.TIFF_DOUBLE
data as an array ofdouble
s (64-bit floating-point values).float
getAsFloat(int index)
Returns data in any format as afloat
.float[]
getAsFloats()
ReturnsTIFFTag.TIFF_FLOAT
data as an array offloat
s (32-bit floating-point values).int
getAsInt(int index)
Returns data in any format as anint
.int[]
getAsInts()
ReturnsTIFFTag.TIFF_SLONG
data as an array ofint
s (signed 32-bit integers).long
getAsLong(int index)
Returns data in any format as along
.long[]
getAsLongs()
ReturnsTIFFTag.TIFF_LONG
orTIFF_IFD_POINTER
data as an array oflong
s (signed 64-bit integers).Node
getAsNativeNode()
Returns theTIFFField
as a node named either"TIFFField"
or"TIFFIFD"
as described in the TIFF native image metadata specification.long[]
getAsRational(int index)
Returns a TIFFTag.TIFF_RATIONAL data item as a two-element array of ints.long[][]
getAsRationals()
ReturnsTIFFTag.TIFF_RATIONAL
data as an array of 2-element arrays oflong
s.short[]
getAsShorts()
ReturnsTIFFTag.TIFF_SSHORT
data as an array ofshort
s (signed 16-bit integers).int[]
getAsSRational(int index)
Returns aTIFFTag.TIFF_SRATIONAL
data item as a two-element array ofint
s.int[][]
getAsSRationals()
ReturnsTIFFTag.TIFF_SRATIONAL
data as an array of 2-element arrays ofint
s.String
getAsString(int index)
Returns aTIFFTag.TIFF_ASCII
value as aString
.int
getCount()
Returns the number of data items present in the field.Object
getData()
Returns a reference to the data object associated with the field.TIFFDirectory
getDirectory()
Returns the associatedTIFFDirectory
, if available.TIFFTag
getTag()
Retrieves the tag associated with this field.int
getTagNumber()
Retrieves the tag number in the range[0,65535]
.int
getType()
Returns the type of the data stored in the field.static int
getTypeByName(String typeName)
Returns the data type constant corresponding to the supplied data type name.static String
getTypeName(int dataType)
Returns the name of the supplied data type constant.String
getValueAsString(int index)
Returns aString
containing a human-readable version of the data item.boolean
hasDirectory()
Returns whether the field has aTIFFDirectory
.boolean
isIntegral()
Indicates whether the value associated with the field is of integral data type.
-
Constructor Details
-
TIFFField
Constructs aTIFFField
with arbitrary data. Thetype
parameter must be a value for whichtag.isDataTypeOK()
returnstrue
. Thedata
parameter must be an array of a Java type appropriate for the type of the TIFF field.Note that the value (data) of the
TIFFField
will always be the actual field value regardless of the number of bytes required for that value. This is the case despite the fact that the TIFF IFD Entry corresponding to the field may actually contain the offset to the value of the field rather than the value itself (the latter occurring if and only if the value fits into 4 bytes). In other words, the value of the field will already have been read from the TIFF stream. (An exception to this case may occur when the field represents the contents of a non-baseline IFD. In that case the data will be along[]
containing the offset to the IFD and theTIFFDirectory
returned bygetDirectory()
will be its contents.)- Parameters:
tag
- The tag to associated with this field.type
- One of theTIFFTag.TIFF_*
constants indicating the data type of the field as written to the TIFF stream.count
- The number of data values.data
- The actual data content of the field.- Throws:
NullPointerException
- iftag == null
.IllegalArgumentException
- iftype
is not one of theTIFFTag.TIFF_*
data type constants.IllegalArgumentException
- iftype
is an unacceptable data type for the suppliedTIFFTag
.IllegalArgumentException
- ifcount < 0
.IllegalArgumentException
- ifcount < 1
andtype
isTIFF_RATIONAL
orTIFF_SRATIONAL
.IllegalArgumentException
- ifcount != 1
andtype
isTIFF_IFD_POINTER
.NullPointerException
- ifdata == null
.IllegalArgumentException
- ifdata
is an instance of a class incompatible with the specified type.IllegalArgumentException
- if the size of the data array is wrong.IllegalArgumentException
- if the type of the data array isTIFF_LONG
,TIFF_RATIONAL
, orTIFF_IFD_POINTER
and any of the elements is negative or greater than0xffffffff
.
-
TIFFField
Constructs a data array usingcreateArrayForType()
and invokesTIFFField(TIFFTag,int,int,Object)
with the supplied parameters and the created array.- Parameters:
tag
- The tag to associated with this field.type
- One of theTIFFTag.TIFF_*
constants indicating the data type of the field as written to the TIFF stream.count
- The number of data values.- Throws:
NullPointerException
- iftag == null
.IllegalArgumentException
- iftype
is not one of theTIFFTag.TIFF_*
data type constants.IllegalArgumentException
- iftype
is an unacceptable data type for the suppliedTIFFTag
.IllegalArgumentException
- ifcount < 0
.IllegalArgumentException
- ifcount < 1
andtype
isTIFF_RATIONAL
orTIFF_SRATIONAL
.IllegalArgumentException
- ifcount != 1
andtype
isTIFF_IFD_POINTER
.- See Also:
TIFFField(TIFFTag,int,int,Object)
-
TIFFField
Constructs aTIFFField
with a single non-negative integral value. The field will have typeTIFF_SHORT
ifvalue
is in[0,0xffff]
, and typeTIFF_LONG
ifvalue
is in[0x10000,0xffffffff]
. The count of the field will be unity.- Parameters:
tag
- The tag to associate with this field.value
- The value to associate with this field.- Throws:
NullPointerException
- iftag == null
.IllegalArgumentException
- ifvalue
is not in[0,0xffffffff]
.IllegalArgumentException
- ifvalue
is in[0,0xffff]
andTIFF_SHORT
is an unacceptable type for theTIFFTag
, or ifvalue
is in[0x10000,0xffffffff]
andTIFF_LONG
is an unacceptable type for theTIFFTag
.
-
TIFFField
Constructs aTIFFField
with an IFD offset and contents. The offset will be stored as the data of this field aslong[] {offset}
. The directory will not be cloned. The count of the field will be unity.- Parameters:
tag
- The tag to associated with this field.type
- One of the constantsTIFFTag.TIFF_LONG
orTIFFTag.TIFF_IFD_POINTER
.offset
- The IFD offset.dir
- The directory.- Throws:
NullPointerException
- iftag == null
.IllegalArgumentException
- iftype
is an unacceptable data type for the suppliedTIFFTag
.IllegalArgumentException
- iftype
is neitherTIFFTag.TIFF_LONG
norTIFFTag.TIFF_IFD_POINTER
.IllegalArgumentException
- ifoffset <= 0
.NullPointerException
- ifdir == null
.- See Also:
TIFFField(TIFFTag,int,int,Object)
-
-
Method Details
-
createFromMetadataNode
Creates aTIFFField
from a TIFF native image metadata node. If the value of the"number"
attribute of the node is not found intagSet
then a newTIFFTag
with nameTIFFTag.UNKNOWN_TAG_NAME
will be created and assigned to the field.- Parameters:
tagSet
- TheTIFFTagSet
to which theTIFFTag
of the field belongs.node
- A native TIFF image metadataTIFFField
node.- Returns:
- A new
TIFFField
. - Throws:
IllegalArgumentException
- If theNode
parameter content does not adhere to theTIFFField
element structure defined by the TIFF native image metadata format specification, or if the combination of node attributes and data is not legal per theTIFFField(TIFFTag,int,int,Object)
constructor specification. Note that a cause might be set on such an exception.
-
getTag
Retrieves the tag associated with this field.- Returns:
- The associated
TIFFTag
.
-
getTagNumber
public int getTagNumber()Retrieves the tag number in the range[0,65535]
.- Returns:
- The tag number.
-
getType
public int getType()Returns the type of the data stored in the field. For a TIFF 6.0 stream, the value will equal one of theTIFFTag.TIFF_*
constants. For future revisions of TIFF, higher values are possible.- Returns:
- The data type of the field value.
-
getTypeName
Returns the name of the supplied data type constant.- Parameters:
dataType
- One of theTIFFTag.TIFF_*
constants indicating the data type of the field as written to the TIFF stream.- Returns:
- The type name corresponding to the supplied type constant.
- Throws:
IllegalArgumentException
- ifdataType
is not one of theTIFFTag.TIFF_*
data type constants.
-
getTypeByName
Returns the data type constant corresponding to the supplied data type name. If the name is unknown-1
will be returned.- Parameters:
typeName
- The type name.- Returns:
- One of the
TIFFTag.TIFF_*
constants or-1
if the name is not recognized.
-
createArrayForType
Creates an array appropriate for the indicated data type.- Parameters:
dataType
- One of theTIFFTag.TIFF_*
data type constants.count
- The number of values in the array.- Returns:
- An array appropriate for the specified data type.
- Throws:
IllegalArgumentException
- ifdataType
is not one of theTIFFTag.TIFF_*
data type constants.IllegalArgumentException
- ifcount < 0
.IllegalArgumentException
- ifcount < 1
andtype
isTIFF_RATIONAL
orTIFF_SRATIONAL
.IllegalArgumentException
- ifcount != 1
andtype
isTIFF_IFD_POINTER
.
-
getAsNativeNode
Returns theTIFFField
as a node named either"TIFFField"
or"TIFFIFD"
as described in the TIFF native image metadata specification. The node will be named"TIFFIFD"
if and only ifhasDirectory()
returnstrue
and the field's type is eitherTIFFTag.TIFF_LONG
orTIFFTag.TIFF_IFD_POINTER
.- Returns:
- a
Node
named"TIFFField"
or"TIFFIFD"
.
-
isIntegral
public boolean isIntegral()Indicates whether the value associated with the field is of integral data type.- Returns:
- Whether the field type is integral.
-
getCount
public int getCount()Returns the number of data items present in the field. ForTIFFTag.TIFF_ASCII
fields, the value returned is the number ofString
s, not the total length of the data as in the file representation.- Returns:
- The number of data items present in the field.
-
getData
Returns a reference to the data object associated with the field.- Returns:
- The data object of the field.
-
getAsBytes
public byte[] getAsBytes()Returns the data as an uninterpreted array ofbyte
s. The type of the field must be one ofTIFFTag.TIFF_BYTE
,TIFF_SBYTE
, orTIFF_UNDEFINED
.For data in
TIFFTag.TIFF_BYTE
format, the application must take care when promoting the data to longer integral types to avoid sign extension.- Returns:
- The data as an uninterpreted array of bytes.
- Throws:
ClassCastException
- if the field is not of typeTIFF_BYTE
,TIFF_SBYTE
, orTIFF_UNDEFINED
.
-
getAsChars
public char[] getAsChars()ReturnsTIFFTag.TIFF_SHORT
data as an array ofchar
s (unsigned 16-bit integers).- Returns:
- The data as an array of
char
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_SHORT
.
-
getAsShorts
public short[] getAsShorts()ReturnsTIFFTag.TIFF_SSHORT
data as an array ofshort
s (signed 16-bit integers).- Returns:
- The data as an array of
short
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_SSHORT
.
-
getAsInts
public int[] getAsInts()ReturnsTIFFTag.TIFF_SLONG
data as an array ofint
s (signed 32-bit integers).- Returns:
- The data as an array of
int
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_SHORT
,TIFF_SSHORT
, orTIFF_SLONG
.
-
getAsLongs
public long[] getAsLongs()ReturnsTIFFTag.TIFF_LONG
orTIFF_IFD_POINTER
data as an array oflong
s (signed 64-bit integers).- Returns:
- The data as an array of
long
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_LONG
orTIFF_IFD_POINTER
.
-
getAsFloats
public float[] getAsFloats()ReturnsTIFFTag.TIFF_FLOAT
data as an array offloat
s (32-bit floating-point values).- Returns:
- The data as an array of
float
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_FLOAT
.
-
getAsDoubles
public double[] getAsDoubles()ReturnsTIFFTag.TIFF_DOUBLE
data as an array ofdouble
s (64-bit floating-point values).- Returns:
- The data as an array of
double
s. - Throws:
ClassCastException
- if the field is not of typeTIFF_DOUBLE
.
-
getAsSRationals
public int[][] getAsSRationals()ReturnsTIFFTag.TIFF_SRATIONAL
data as an array of 2-element arrays ofint
s.- Returns:
- The data as an array of signed rationals.
- Throws:
ClassCastException
- if the field is not of typeTIFF_SRATIONAL
.
-
getAsRationals
public long[][] getAsRationals()ReturnsTIFFTag.TIFF_RATIONAL
data as an array of 2-element arrays oflong
s.- Returns:
- The data as an array of unsigned rationals.
- Throws:
ClassCastException
- if the field is not of typeTIFF_RATIONAL
.
-
getAsInt
public int getAsInt(int index)Returns data in any format as anint
.TIFFTag.TIFF_BYTE
values are treated as unsigned; that is, no sign extension will take place and the returned value will be in the range [0, 255].TIFF_SBYTE
data will be returned in the range [-128, 127].A
TIFF_UNDEFINED
value is treated as though it were aTIFF_BYTE
.Data in
TIFF_SLONG
,TIFF_LONG
,TIFF_FLOAT
,TIFF_DOUBLE
orTIFF_IFD_POINTER
format are simply cast toint
and may suffer from truncation.Data in
TIFF_SRATIONAL
orTIFF_RATIONAL
format are evaluated by dividing the numerator into the denominator using double-precision arithmetic and then casting toint
. Loss of precision and truncation may occur.Data in
TIFF_ASCII
format will be parsed as by theDouble.parseDouble
method, with the result case toint
.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as an
int
.
-
getAsLong
public long getAsLong(int index)Returns data in any format as along
.TIFFTag.TIFF_BYTE
andTIFF_UNDEFINED
data are treated as unsigned; that is, no sign extension will take place and the returned value will be in the range [0, 255].TIFF_SBYTE
data will be returned in the range [-128, 127].Data in
TIFF_FLOAT
andTIFF_DOUBLE
are simply cast tolong
and may suffer from truncation.Data in
TIFF_SRATIONAL
orTIFF_RATIONAL
format are evaluated by dividing the numerator into the denominator using double-precision arithmetic and then casting tolong
. Loss of precision and truncation may occur.Data in
TIFF_ASCII
format will be parsed as by theDouble.parseDouble
method, with the result cast tolong
.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a
long
.
-
getAsFloat
public float getAsFloat(int index)Returns data in any format as afloat
.TIFFTag.TIFF_BYTE
andTIFF_UNDEFINED
data are treated as unsigned; that is, no sign extension will take place and the returned value will be in the range [0, 255].TIFF_SBYTE
data will be returned in the range [-128, 127].Data in
TIFF_SLONG
,TIFF_LONG
,TIFF_DOUBLE
, orTIFF_IFD_POINTER
format are simply cast tofloat
and may suffer from truncation.Data in
TIFF_SRATIONAL
orTIFF_RATIONAL
format are evaluated by dividing the numerator into the denominator using double-precision arithmetic and then casting tofloat
.Data in
TIFF_ASCII
format will be parsed as by theDouble.parseDouble
method, with the result cast tofloat
.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a
float
.
-
getAsDouble
public double getAsDouble(int index)Returns data in any format as adouble
.TIFFTag.TIFF_BYTE
andTIFF_UNDEFINED
data are treated as unsigned; that is, no sign extension will take place and the returned value will be in the range [0, 255].TIFF_SBYTE
data will be returned in the range [-128, 127].Data in
TIFF_SRATIONAL
orTIFF_RATIONAL
format are evaluated by dividing the numerator into the denominator using double-precision arithmetic.Data in
TIFF_ASCII
format will be parsed as by theDouble.parseDouble
method.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a
double
.
-
getAsString
Returns aTIFFTag.TIFF_ASCII
value as aString
.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a
String
. - Throws:
ClassCastException
- if the field is not of typeTIFF_ASCII
.
-
getAsSRational
public int[] getAsSRational(int index)Returns aTIFFTag.TIFF_SRATIONAL
data item as a two-element array ofint
s.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a signed rational.
- Throws:
ClassCastException
- if the field is not of typeTIFF_SRATIONAL
.
-
getAsRational
public long[] getAsRational(int index)Returns a TIFFTag.TIFF_RATIONAL data item as a two-element array of ints.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as an unsigned rational.
- Throws:
ClassCastException
- if the field is not of typeTIFF_RATIONAL
.
-
getValueAsString
Returns aString
containing a human-readable version of the data item. Data of typeTIFFTag.TIFF_RATIONAL
orTIFF_SRATIONAL
are represented as a pair of integers separated by a'/'
character. If the numerator of aTIFFTag.TIFF_RATIONAL
orTIFF_SRATIONAL
is an integral multiple of the denominator, then the value is represented as"q/1"
whereq
is the quotient of the numerator and denominator.- Parameters:
index
- The index of the data.- Returns:
- The data at the given index as a
String
. - Throws:
ClassCastException
- if the field is not of one of the legal field types.
-
hasDirectory
public boolean hasDirectory()Returns whether the field has aTIFFDirectory
.- Returns:
- true if and only if getDirectory() returns non-null.
-
getDirectory
Returns the associatedTIFFDirectory
, if available. If no directory is set, thennull
will be returned.- Returns:
- the TIFFDirectory instance or null.
-
clone
Clones the field and all the information contained therein.- Overrides:
clone
in classObject
- Returns:
- A clone of this
TIFFField
. - Throws:
CloneNotSupportedException
- if the instance cannot be cloned.- See Also:
Cloneable
-