net.sf.image4j.codec.bmp
Class BMPConstants

java.lang.Object
  extended by net.sf.image4j.codec.bmp.BMPConstants

public class BMPConstants
extends java.lang.Object

Provides constants used with BMP format.

Author:
Ian McDonagh

Field Summary
static int BI_RGB
          Specifies no compression.
static int BI_RLE4
          Specifies 4-bit RLE compression.
static int BI_RLE8
          Specifies 8-bit RLE compression.
static java.lang.String FILE_HEADER
          The signature for the BMP format header "BM".
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FILE_HEADER

public static final java.lang.String FILE_HEADER
The signature for the BMP format header "BM".

See Also:
Constant Field Values

BI_RGB

public static final int BI_RGB
Specifies no compression.

See Also:
InfoHeader, Constant Field Values

BI_RLE8

public static final int BI_RLE8
Specifies 8-bit RLE compression.

See Also:
InfoHeader, Constant Field Values

BI_RLE4

public static final int BI_RLE4
Specifies 4-bit RLE compression.

See Also:
InfoHeader, Constant Field Values