ImageFormat RGB323232F

book_4_sparkGenerated
code_blocksInput

Description

The RGB323232F field is a member of the ImageFormat enumeration in the Sandbox namespace. This field represents an image format where each color channel (Red, Green, Blue) is stored as a 32-bit floating-point value. This format is typically used for high dynamic range (HDR) images where a wide range of color values is required.

Usage

Use the RGB323232F format when you need to work with images that require high precision and a wide range of color values. This format is particularly useful in applications involving image processing, rendering, or any scenario where HDR images are necessary.

Example

// Example of using RGB323232F in a hypothetical image processing function
public void ProcessImage(Image image)
{
    if (image.Format == ImageFormat.RGB323232F)
    {
        // Perform operations specific to RGB323232F format
        // For example, adjust brightness or contrast
    }
}