Class TIFFCompressor
- Direct Known Subclasses:
TIFFBaseJPEGCompressor
,TIFFDeflater
,TIFFFaxCompressor
,TIFFLSBCompressor
,TIFFLZWCompressor
,TIFFNullCompressor
,TIFFPackBitsCompressor
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected int
The value to be assigned to the TIFF Compression tag in the TIFF image metadata.protected String
The name of the compression type supported by this compressor.protected boolean
Whether the compression is lossless.protected IIOMetadata
TheIIOMetadata
object containing metadata for the current image.protected ImageOutputStream
TheImageOutputStream
to be written.protected ImageWriter
TheImageWriter
calling thisTIFFCompressor
. -
Constructor Summary
ConstructorsConstructorDescriptionTIFFCompressor
(String compressionType, int compressionTagValue, boolean isCompressionLossless) Creates a compressor object for use in compressing TIFF data. -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Allows any resources held by this object to be released.abstract int
encode
(byte[] b, int off, int width, int height, int[] bitsPerSample, int scanlineStride) Encodes the supplied image data, writing to the currently setImageOutputStream
.int
Retrieve the value to be assigned to the TIFF Compression tag in the TIFF image metadata.Retrieve the name of the compression type supported by this compressor.Returns the currentIIOMetadata
object.Returns theImageOutputStream
that will be written.Returns the currentImageWriter
.boolean
Retrieves a value indicating whether the compression is lossless.void
setMetadata
(IIOMetadata metadata) Sets the value of themetadata
field.void
setStream
(ImageOutputStream stream) Sets theImageOutputStream
to be written.void
setWriter
(ImageWriter writer) Sets the value of thewriter
field.
-
Field Details
-
writer
TheImageWriter
calling thisTIFFCompressor
. -
metadata
TheIIOMetadata
object containing metadata for the current image. -
compressionType
The name of the compression type supported by this compressor. -
compressionTagValue
protected int compressionTagValueThe value to be assigned to the TIFF Compression tag in the TIFF image metadata. -
isCompressionLossless
protected boolean isCompressionLosslessWhether the compression is lossless. -
stream
TheImageOutputStream
to be written.
-
-
Constructor Details
-
TIFFCompressor
public TIFFCompressor(String compressionType, int compressionTagValue, boolean isCompressionLossless) Creates a compressor object for use in compressing TIFF data. This object may be passed to theTIFFImageWriteParam.setTIFFCompressor(TIFFCompressor)
method to override the compressor of a supported compression type or to provide the implementation of the compression algorithm of an unsupported compression type.The parameters
compressionTagValue
andisCompressionLossless
are provided to accomodate compression types which are unknown. A compression type is "known" if it is either among those already supported by the TIFF writer (seeTIFFImageWriteParam
), or is listed in the TIFF 6.0 specification but not supported. If the compression type is unknown, thecompressionTagValue
andisCompressionLossless
parameters are ignored.- Parameters:
compressionType
- The name of the compression type.compressionTagValue
- The value to be assigned to the TIFF Compression tag in the TIFF image metadata; ignored ifcompressionType
is a known type.isCompressionLossless
- Whether the compression is lossless; ignored ifcompressionType
is a known type.- Throws:
IllegalArgumentException
- ifcompressionType
isnull
orcompressionTagValue
is less than1
.
-
-
Method Details
-
getCompressionType
Retrieve the name of the compression type supported by this compressor.- Returns:
- The compression type name.
-
getCompressionTagValue
public int getCompressionTagValue()Retrieve the value to be assigned to the TIFF Compression tag in the TIFF image metadata.- Returns:
- The Compression tag value.
-
isCompressionLossless
public boolean isCompressionLossless()Retrieves a value indicating whether the compression is lossless.- Returns:
- Whether the compression is lossless.
-
setStream
Sets theImageOutputStream
to be written.- Parameters:
stream
- anImageOutputStream
to be written.- See Also:
-
getStream
Returns theImageOutputStream
that will be written.- Returns:
- an
ImageOutputStream
. - See Also:
-
setWriter
Sets the value of thewriter
field.- Parameters:
writer
- the currentImageWriter
.- See Also:
-
getWriter
Returns the currentImageWriter
.- Returns:
- an
ImageWriter
. - See Also:
-
setMetadata
Sets the value of themetadata
field.- Parameters:
metadata
- theIIOMetadata
object for the image being written.- See Also:
-
getMetadata
Returns the currentIIOMetadata
object.- Returns:
- the
IIOMetadata
object for the image being written. - See Also:
-
encode
public abstract int encode(byte[] b, int off, int width, int height, int[] bitsPerSample, int scanlineStride) throws IOException Encodes the supplied image data, writing to the currently setImageOutputStream
.- Parameters:
b
- an array ofbyte
s containing the packed but uncompressed image data.off
- the starting offset of the data to be written in the arrayb
.width
- the width of the rectangle of pixels to be written.height
- the height of the rectangle of pixels to be written.bitsPerSample
- an array ofint
s indicting the number of bits used to represent each image sample within a pixel.scanlineStride
- the number of bytes separating each row of the input data.- Returns:
- the number of bytes written.
- Throws:
IOException
- if the supplied data cannot be encoded by thisTIFFCompressor
, or if any I/O error occurs during writing.
-
dispose
public void dispose()Allows any resources held by this object to be released. The result of calling any other method (other thanfinalize
) subsequent to a call to this method is undefined.It is important for applications to call this method when they know they will no longer be using this
TIFFCompressor
. Otherwise, the writer may continue to hold on to resources indefinitely.The default implementation of this method in the superclass does nothing. Subclass implementations should ensure that all resources, especially native resources, are released.
-