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 ImageFormat.RGB323232F 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 color accuracy and detail are critical.

Example

// Example of using ImageFormat.RGB323232F

// Assuming you have a method to load an image with a specific format
Image myImage = LoadImage("path/to/image", ImageFormat.RGB323232F);

// Process the image as needed
ProcessImage(myImage);