javafx.scene.image
Enum PixelFormat.Type
- java.lang.Enum<PixelFormat.Type>
-
- javafx.scene.image.PixelFormat.Type
All Implemented Interfaces:
Enclosing class:
PixelFormat<T extends Buffer>
public static enum PixelFormat.Type extends Enum<PixelFormat.Type>
An enum describing the in-array storage format of a single pixel managed by a
PixelFormat.Since:
JavaFX 2.2
-
Enum Constant Summary
Enum Constants Enum Constant and Description BYTE_BGRAThe pixels are stored in adjacent bytes with the non-premultiplied components stored in order of increasing index: blue, green, red, alpha.BYTE_BGRA_PREThe pixels are stored in adjacent bytes with the premultiplied components stored in order of increasing index: blue, green, red, alpha.BYTE_INDEXEDThe pixel colors are referenced by byte indices stored in the pixel array, with the byte interpreted as an unsigned index into a list of colors provided by thePixelFormatobject.BYTE_RGBThe opaque pixels are stored in adjacent bytes with the color components stored in order of increasing index: red, green, blue.INT_ARGBThe pixels are stored in 32-bit integers with the non-premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.INT_ARGB_PREThe pixels are stored in 32-bit integers with the premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
-
Method Summary
All MethodsStatic MethodsConcrete Methods Modifier and Type Method and Description static PixelFormat.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static PixelFormat.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Detail
-
INT_ARGB_PRE
public static final PixelFormat.Type INT_ARGB_PRE
The pixels are stored in 32-bit integers with the premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
-
INT_ARGB
public static final PixelFormat.Type INT_ARGB
The pixels are stored in 32-bit integers with the non-premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
-
BYTE_BGRA_PRE
public static final PixelFormat.Type BYTE_BGRA_PRE
The pixels are stored in adjacent bytes with the premultiplied components stored in order of increasing index: blue, green, red, alpha.
-
BYTE_BGRA
public static final PixelFormat.Type BYTE_BGRA
The pixels are stored in adjacent bytes with the non-premultiplied components stored in order of increasing index: blue, green, red, alpha.
-
BYTE_RGB
public static final PixelFormat.Type BYTE_RGB
The opaque pixels are stored in adjacent bytes with the color components stored in order of increasing index: red, green, blue.
-
BYTE_INDEXED
public static final PixelFormat.Type BYTE_INDEXED
The pixel colors are referenced by byte indices stored in the pixel array, with the byte interpreted as an unsigned index into a list of colors provided by thePixelFormatobject.
-
-
Method Detail
-
values
public static PixelFormat.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PixelFormat.Type c : PixelFormat.Type.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PixelFormat.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)Parameters:
name- the name of the enum constant to be returned.Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException- if this enum type has no constant with the specified name
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.