com.qoppa.pdf
Class TIFFCompression

java.lang.Object
  extended bycom.qoppa.pdf.TIFFCompression

public class TIFFCompression
extends Object

This class provides constants for the different TIFF compression schemes supported by Java Image I/O.

Author:
Qoppa Software

Field Summary
static String TIFF_CCITT_RLE
          TIFF CCITT Modified Huffman RLE compression.
static String TIFF_CCITT_T4
          TIFF CCITT Group 3 fax encoding.
static String TIFF_CCITT_T6
          TIFF CCITT Group 4 fax encoding.
static String TIFF_DEFLATE
          TIFF Deflate lossless compression (Zip-in-TIFF).
static String TIFF_FAX_GROUP3
          TIFF CCITT Group 3 fax encoding.
static String TIFF_FAX_GROUP4
          TIFF CCITT Group 4 fax encoding.
static String TIFF_JPEG
          TIFF JPEG-in-TIFF compression.
static String TIFF_LZW
          TIFF LZW Compression
static String TIFF_NO_COMPRESSION
          TIFF with no compression.
static String TIFF_PACKBITS
          TIFF Byte-oriented run-length encoding "PackBits" compression.
static String TIFF_ZLIB
          TIFF ZLib Compression.
 
Constructor Summary
TIFFCompression()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TIFF_DEFLATE

public static final String TIFF_DEFLATE
TIFF Deflate lossless compression (Zip-in-TIFF).

See Also:
Constant Field Values

TIFF_CCITT_RLE

public static final String TIFF_CCITT_RLE
TIFF CCITT Modified Huffman RLE compression.

See Also:
Constant Field Values

TIFF_CCITT_T4

public static final String TIFF_CCITT_T4
TIFF CCITT Group 3 fax encoding.

See Also:
Constant Field Values

TIFF_FAX_GROUP3

public static final String TIFF_FAX_GROUP3
TIFF CCITT Group 3 fax encoding.

See Also:
Constant Field Values

TIFF_CCITT_T6

public static final String TIFF_CCITT_T6
TIFF CCITT Group 4 fax encoding.

See Also:
Constant Field Values

TIFF_FAX_GROUP4

public static final String TIFF_FAX_GROUP4
TIFF CCITT Group 4 fax encoding.

See Also:
Constant Field Values

TIFF_JPEG

public static final String TIFF_JPEG
TIFF JPEG-in-TIFF compression.

See Also:
Constant Field Values

TIFF_LZW

public static final String TIFF_LZW
TIFF LZW Compression

See Also:
Constant Field Values

TIFF_PACKBITS

public static final String TIFF_PACKBITS
TIFF Byte-oriented run-length encoding "PackBits" compression.

See Also:
Constant Field Values

TIFF_ZLIB

public static final String TIFF_ZLIB
TIFF ZLib Compression.

See Also:
Constant Field Values

TIFF_NO_COMPRESSION

public static final String TIFF_NO_COMPRESSION
TIFF with no compression.

Constructor Detail

TIFFCompression

public TIFFCompression()