[][src]Enum mozjpeg::ColorSpace

#[repr(C)]
pub enum ColorSpace { 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

JCS_UNKNOWN

error/unspecified

JCS_GRAYSCALE

monochrome

JCS_RGB

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

JCS_YCbCr

Y/Cb/Cr (also known as YUV)

JCS_CMYK

C/M/Y/K

JCS_YCCK

Y/Cb/Cr/K

JCS_EXT_RGB

red/green/blue

JCS_EXT_RGBX

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.

JCS_EXT_BGR

blue/green/red

JCS_EXT_BGRX

blue/green/red/x

JCS_EXT_XBGR

x/blue/green/red

JCS_EXT_XRGB

x/red/green/blue

JCS_EXT_RGBA

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

JCS_EXT_BGRA

blue/green/red/alpha

JCS_EXT_ABGR

alpha/blue/green/red

JCS_EXT_ARGB

alpha/red/green/blue

JCS_RGB565

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

Trait Implementations

impl Copy for J_COLOR_SPACE
[src]

impl Debug for J_COLOR_SPACE
[src]

impl Clone for J_COLOR_SPACE
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for J_COLOR_SPACE
[src]

impl PartialEq<J_COLOR_SPACE> for J_COLOR_SPACE
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl ColorSpaceExt for ColorSpace
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]