Description
The RGBA32323232
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents an image with a 128-bit color depth, where each channel (Red, Green, Blue, and Alpha) is represented by a 32-bit integer. This format is typically used for high-precision color representation, allowing for a wide range of color values and high dynamic range (HDR) imaging.
Usage
Use the RGBA32323232
format when you need to work with images that require high precision and a wide color gamut. This format is suitable for applications that involve detailed image processing, such as photo editing software, scientific visualization, or any application that benefits from HDR imaging.
Example
// Example of using ImageFormat.RGBA32323232
// Assuming you have an image processing function
void ProcessImage(Image image)
{
if (image.Format == ImageFormat.RGBA32323232)
{
// Perform operations specific to high-precision images
// For example, apply HDR effects or color grading
}
}