Enum mozjpeg_sys::J_COLOR_SPACE [] [src]

#[repr(C)]
pub enum J_COLOR_SPACE { JCS_UNKNOWN, JCS_GRAYSCALE, JCS_RGB, JCS_YCbCr, JCS_CMYK, JCS_YCCK, JCS_EXT_RGB, JCS_EXT_RGBX, JCS_EXT_BGR, JCS_EXT_BGRX, JCS_EXT_XBGR, JCS_EXT_XRGB, JCS_EXT_RGBA, JCS_EXT_BGRA, JCS_EXT_ABGR, JCS_EXT_ARGB, JCS_RGB565, }

Variants

error/unspecified

monochrome

red/green/blue as specified by the RGB_RED, RGB_GREEN, RGB_BLUE, and RGB_PIXELSIZE macros

Y/Cb/Cr (also known as YUV)

C/M/Y/K

Y/Cb/Cr/K

red/green/blue

red/green/blue/x When out_color_space it set to JCS_EXT_RGBX, JCS_EXT_BGRX, JCS_EXT_XBGR, or JCS_EXT_XRGB during decompression, the X byte is undefined, and in order to ensure the best performance, libjpeg-turbo can set that byte to whatever value it wishes.

blue/green/red

blue/green/red/x

x/blue/green/red

x/red/green/blue

Use the following colorspace constants to ensure that the X byte is set to 0xFF, so that it can be interpreted as an opaque alpha channel.

red/green/blue/alpha

blue/green/red/alpha

alpha/blue/green/red

alpha/red/green/blue

5-bit red/6-bit green/5-bit blue

Trait Implementations

impl Copy for J_COLOR_SPACE
[src]

impl Clone for J_COLOR_SPACE
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for J_COLOR_SPACE
[src]

impl PartialEq for J_COLOR_SPACE
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Debug for J_COLOR_SPACE
[src]

[src]

Formats the value using the given formatter.