| Package | de.popforge.imageprocessing.core |
| Class | public final class ImageFormat |
When you call some methods, you can use the bitwise OR operator (|) to combine ImageFormat constants to indicate multiple formats.
| Constant | Defined by | ||
|---|---|---|---|
| BINARY : int = 1 [static] The binary format (one channel).
| ImageFormat | ||
| GRAYSCALE : int = 2 [static] The grayscale format (one channel).
| ImageFormat | ||
| RGB : int = 4 [static] The RGB format (three channels).
| ImageFormat | ||
| RGBA : int = 8 [static] The RGBA format (four channels).
| ImageFormat | ||
| BINARY | constant |
public static const BINARY:int = 1The binary format (one channel).
| GRAYSCALE | constant |
public static const GRAYSCALE:int = 2The grayscale format (one channel).
| RGB | constant |
public static const RGB:int = 4The RGB format (three channels).
| RGBA | constant |
public static const RGBA:int = 8The RGBA format (four channels).