[][src]Struct escposify::img::Image

pub struct Image {
    pub width: u32,
    pub height: u32,
    // some fields omitted
}

Fields

width: u32height: u32

Implementations

impl Image[src]

pub fn new<P: AsRef<Path> + ToString>(path: P) -> Image[src]

pub fn from(img_buf: DynamicImage) -> Image[src]

pub fn is_blank_pixel(&self, x: u32, y: u32) -> bool[src]

pub fn bitimage_lines(&self, density: u32) -> BitimageLines<'_>

Notable traits for BitimageLines<'a>

impl<'a> Iterator for BitimageLines<'a> type Item = Box<[u8]>;
[src]

pub fn get_raster(&self) -> Box<[u8]>[src]

Auto Trait Implementations

impl RefUnwindSafe for Image

impl Send for Image

impl Sync for Image

impl Unpin for Image

impl UnwindSafe for Image

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.