Package com.pixelmed.convert
Class TIFFImageFileDirectoryEntry
- java.lang.Object
-
- com.pixelmed.convert.TIFFImageFileDirectoryEntry
-
public class TIFFImageFileDirectoryEntry extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected long
numberOfValues
protected int
tagIdentifier
protected int
tagType
protected TIFFValues
values
-
Constructor Summary
Constructors Constructor Description TIFFImageFileDirectoryEntry(int tagIdentifier, int tagType, long numberOfValues, TIFFValues values)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getNumberOfValues()
int
getTagIdentifier()
int
getTagType()
TIFFValues
getValues()
static TIFFImageFileDirectoryEntry
readBigIFDEntry(TIFFFile f)
static TIFFImageFileDirectoryEntry
readClassicIFDEntry(TIFFFile f)
java.lang.String
toString()
-
-
-
Field Detail
-
tagIdentifier
protected int tagIdentifier
-
tagType
protected int tagType
-
numberOfValues
protected long numberOfValues
-
values
protected TIFFValues values
-
-
Constructor Detail
-
TIFFImageFileDirectoryEntry
public TIFFImageFileDirectoryEntry(int tagIdentifier, int tagType, long numberOfValues, TIFFValues values)
-
-
Method Detail
-
getTagIdentifier
public int getTagIdentifier()
-
getTagType
public int getTagType()
-
getNumberOfValues
public long getNumberOfValues()
-
getValues
public TIFFValues getValues()
-
readBigIFDEntry
public static TIFFImageFileDirectoryEntry readBigIFDEntry(TIFFFile f) throws java.io.EOFException, java.io.IOException, TIFFException
- Throws:
java.io.EOFException
java.io.IOException
TIFFException
-
readClassicIFDEntry
public static TIFFImageFileDirectoryEntry readClassicIFDEntry(TIFFFile f) throws java.io.EOFException, java.io.IOException, TIFFException
- Throws:
java.io.EOFException
java.io.IOException
TIFFException
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-