TiffStreamFactory Class
Summary: The Tiff stream factory based on byte endianness.
Module: aspose.imaging.fileformats.tiff.filemanagement
Full Name: aspose.imaging.fileformats.tiff.filemanagement.TiffStreamFactory
Methods
Name | Description |
---|---|
get_tiff_reader(bytes, bytes_offset, data_length, byte_order, is_big_tiff) | Gets the tiff stream reader. |
get_tiff_reader(stream, byte_order, is_big_tiff) | Gets the tiff stream reader. |
get_tiff_writer(stream, byte_order, is_big_tiff) | Gets the tiff stream writer. |
Method: get_tiff_reader(bytes, bytes_offset, data_length, byte_order, is_big_tiff) [static]
get_tiff_reader(bytes, bytes_offset, data_length, byte_order, is_big_tiff)
Gets the tiff stream reader.
Parameters:
Parameter | Type | Description |
---|---|---|
bytes | byte | The bytes. |
bytes_offset | int | The bytes offset. |
data_length | int | Length of the data. |
byte_order | TiffByteOrder | The byte order. |
is_big_tiff | bool | Indicates Tiff type: original or big. |
Returns
Type | Description |
---|---|
TiffStreamReader | Tiff stream suitable for reading. |
Method: get_tiff_reader(stream, byte_order, is_big_tiff) [static]
get_tiff_reader(stream, byte_order, is_big_tiff)
Gets the tiff stream reader.
Parameters:
Parameter | Type | Description |
---|---|---|
stream | StreamContainer | The stream container. |
byte_order | TiffByteOrder | The byte order. |
is_big_tiff | bool | Indicates TIFF type. |
Returns
Type | Description |
---|---|
TiffStreamReader | Tiff stream suitable for reading. |
Method: get_tiff_writer(stream, byte_order, is_big_tiff) [static]
get_tiff_writer(stream, byte_order, is_big_tiff)
Gets the tiff stream writer.
Parameters:
Parameter | Type | Description |
---|---|---|
stream | StreamContainer | The stream container. |
byte_order | TiffByteOrder | The byte order. |
is_big_tiff | bool | Indicates TIFF type. |
Returns
Type | Description |
---|---|
TiffStreamWriter | Tiff stream suitable for writing. |