Description
The RGBA32323232
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents an image with 32 bits per channel for red, green, blue, and alpha, resulting in a total of 128 bits per pixel. This high precision format is typically used for images that require a wide dynamic range and high color fidelity.
Usage
Use ImageFormat.RGBA32323232
when you need to work with images that require high precision and a wide color gamut. This format is suitable for applications such as professional photo editing, scientific imaging, and any other use case where color accuracy and detail are critical.
Example
// Example of using ImageFormat.RGBA32323232
// Assuming you have a method to load an image with a specific format
Image myImage = Image.Load("path/to/image", ImageFormat.RGBA32323232);
// Process the image as needed
ProcessImage(myImage);