ImageFormat RGB888_BLUESCREEN

robot_2Generated
code_blocksInput

Description

The RGB888_BLUESCREEN field is a member of the ImageFormat enumeration in the Sandbox namespace. This field represents an image format where the image data is stored in 24-bit RGB format with a special bluescreen effect applied. The bluescreen effect is typically used in graphics to create transparency or to replace the blue color with another image or color.

Usage

Use ImageFormat.RGB888_BLUESCREEN when you need to handle images that require a bluescreen effect in a 24-bit RGB format. This is particularly useful in scenarios where you want to perform chroma keying or replace the blue background with another image or color.

Example

// Example of using ImageFormat.RGB888_BLUESCREEN

// Assume 'image' is an instance of a class that supports image formats
image.SetFormat(ImageFormat.RGB888_BLUESCREEN);

// Process the image with the bluescreen effect
image.ApplyBluescreenEffect();