Description
The ARGB8888
field is a member of the ImageFormat
enumeration in the Sandbox namespace. This format represents an image with 32 bits per pixel, where each pixel is composed of four 8-bit channels: Alpha, Red, Green, and Blue, in that order. This format is commonly used for images that require transparency and full color depth.
Usage
Use the ImageFormat.ARGB8888
when you need to work with images that require an alpha channel for transparency and full 8-bit color depth for each channel. This format is suitable for high-quality images where color accuracy and transparency are important.
Example
// Example of using ImageFormat.ARGB8888
// Assume we have a method to load an image with a specific format
Image myImage = LoadImage("path/to/image.png", ImageFormat.ARGB8888);
// Process the image knowing it has an alpha channel and full color depth
ProcessImage(myImage);