Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 719 Bytes

PixelFormat.md

File metadata and controls

14 lines (10 loc) · 719 Bytes

Openize.Heic.Decoder.PixelFormat

Specifies the format of the color data for each pixel in the image.

Enumeration

Name Description
Rgb24 Specifies that the format is 24 bits per pixel; 8 bits each are used for the red, green, and blue components.
Rgba32 Specifies that the format is 32 bits per pixel; 8 bits each are used for the red, green, blue, and alpha components.
Argb32 Specifies that the format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components.
Bgra32 Specifies that the format is 32 bits per pixel; 8 bits each are used for the blue, green, red, and alpha components.

[Back to API_README]