Description
The RGBA16161616
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents an image with four channels: red, green, blue, and alpha, each with a 16-bit integer precision. This high precision format is suitable for applications requiring a wide dynamic range and high color fidelity, such as HDR imaging.
Usage
Use ImageFormat.RGBA16161616
when you need to work with images that require high precision for each color channel. This format is particularly useful in scenarios where color accuracy and range are critical, such as in professional photo editing or scientific imaging applications.
Example
// Example of using ImageFormat.RGBA16161616
// Assuming you have a method to create a texture
Texture texture = new Texture(width, height, ImageFormat.RGBA16161616);
// Use the texture in your application
// For example, apply it to a material or render it in a scene