[][src]Struct dither::opts::Opt

pub struct Opt {
    pub verbose: bool,
    pub input: PathBuf,
    pub bit_depth: u8,
    pub ditherer: Ditherer,
    pub color_mode: Mode,
    // some fields omitted
}

Fields

verbose: bool

Provide verbose debug information. Default is false.

input: PathBuf

Input file. Supported file types: PNG JPEG GIF BMP ICO TIFF

bit_depth: u8

Color depth. Must be between 1 and 8.

ditherer: Ditherer

Ditherering algorithm to use. Options are "floyd", "atkinson", "stucki", "burkes","jarvis", "sierra3"

color_mode: Mode

Color mode to use. Options are "color", "bw", "cga", $SINGLE_COLOR, "$FRONT_PALETTE $BACKPALETTE"; (all colors with specified bit depth) "bw" -> black and white mode (grayscale in higher birt depths) $COLOR => single-color mode. options are ["BLUE", "GREEN", "CYAN", "RED", "MAGENTA", "BROWN", "LIGHT_GRAY", "GRAY", "LIGHT_BLUE", "LIGHT_GREEN", "LIGHT_CYAN", "LIGHT_RED" "LIGHT_MAGENTA", "YELLOW", "WHITE" ("0xZZZZZZ 0xZZZZZZZ") -> user specified 1bit user color palette; where the first is foreground in hexidecimal and the second is background. "cga" -> sixteen-color CGA. ignores bit depth; casues error on bit depth > 1

Methods

impl Opt[src]

pub fn output_path(&self) -> Cow<PathBuf>[src]

the actual output path. if opts.output exists, this is that; otherwise, this is "{base}dithered{dither}{color}{depth}.png", where base is the input path, stripped of it's extension. $dither bunny.png --color=color --dither=atkinson --depth=2 will save to bunny_atkinson_c_2.png

Trait Implementations

impl Clone for Opt[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Opt> for Opt[src]

impl Debug for Opt[src]

impl StructOpt for Opt[src]

fn from_args() -> Self[src]

Gets the struct from the command line arguments. Print the error message and quit the program in case of failure. Read more

fn from_iter<I>(iter: I) -> Self where
    I: IntoIterator,
    <I as IntoIterator>::Item: Into<OsString>,
    <I as IntoIterator>::Item: Clone
[src]

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

fn from_iter_safe<I>(iter: I) -> Result<Self, Error> where
    I: IntoIterator,
    <I as IntoIterator>::Item: Into<OsString>,
    <I as IntoIterator>::Item: Clone
[src]

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

impl Send for Opt

impl Sync for Opt

Blanket Implementations

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> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[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, 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]

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.