public enum PixelStorageParameter extends Enum<PixelStorageParameter> implements IEnumWithValue
| Enum Constant and Description |
|---|
PACK_ALIGNMENT
Packing of pixel data into memory.
|
PACK_ROW_LENGTH
Number of pixels in a row.
|
PACK_SKIP_PIXELS
Number of pixel locations skipped before the first pixel is written into memory.
|
PACK_SKIP_ROWS
Number of rows of pixel locations skipped before the first pixel is written into memory.
|
UNPACK_ALIGNMENT
Unpacking of pixel data from memory.
|
UNPACK_COLORSPACE_CONVERSION_WEBGL
Default color space conversion or no color space conversion.
|
UNPACK_FLIP_Y_WEBGL
Flips the source data along its vertical axis if true.
|
UNPACK_IMAGE_HEIGHT
Image height used for reading pixel data from memory.
|
UNPACK_PREMULTIPLY_ALPHA_WEBGL
Multiplies the alpha channel into the other color channels.
|
UNPACK_ROW_LENGTH
Number of pixels in a row.
|
UNPACK_SKIP_IMAGES
Number of pixel images skipped before the first pixel is read from memory.
|
UNPACK_SKIP_PIXELS
Number of pixel images skipped before the first pixel is read from memory.
|
UNPACK_SKIP_ROWS
Number of rows of pixel locations skipped before the first pixel is read from memory.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static PixelStorageParameter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PixelStorageParameter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final PixelStorageParameter PACK_ALIGNMENT
public static final PixelStorageParameter PACK_ROW_LENGTH
public static final PixelStorageParameter PACK_SKIP_PIXELS
public static final PixelStorageParameter PACK_SKIP_ROWS
public static final PixelStorageParameter UNPACK_ALIGNMENT
public static final PixelStorageParameter UNPACK_COLORSPACE_CONVERSION_WEBGL
public static final PixelStorageParameter UNPACK_FLIP_Y_WEBGL
public static final PixelStorageParameter UNPACK_IMAGE_HEIGHT
public static final PixelStorageParameter UNPACK_PREMULTIPLY_ALPHA_WEBGL
public static final PixelStorageParameter UNPACK_ROW_LENGTH
public static final PixelStorageParameter UNPACK_SKIP_IMAGES
public static final PixelStorageParameter UNPACK_SKIP_PIXELS
public static final PixelStorageParameter UNPACK_SKIP_ROWS
public static PixelStorageParameter[] values()
for (PixelStorageParameter c : PixelStorageParameter.values()) System.out.println(c);
public static PixelStorageParameter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.