Struct nannou::image::pnm::PnmHeader[][src]

pub struct PnmHeader { /* fields omitted */ }

Stores the complete header data of a file.

Internally, provides mechanisms for lossless reencoding. After reading a file with the decoder it is possible to recover the header and construct an encoder. Using the encoder on the just loaded image should result in a byte copy of the original file (for single image pnms without additional trailing data).

Implementations

impl PnmHeader[src]

pub fn subtype(&self) -> PNMSubtype[src]

Retrieve the format subtype from which the header was created.

pub fn width(&self) -> u32[src]

The width of the image this header is for.

pub fn height(&self) -> u32[src]

The height of the image this header is for.

pub fn maximal_sample(&self) -> u32[src]

The biggest value a sample can have. In other words, the colour resolution.

pub fn as_bitmap(&self) -> Option<&BitmapHeader>[src]

Retrieve the underlying bitmap header if any

pub fn as_graymap(&self) -> Option<&GraymapHeader>[src]

Retrieve the underlying graymap header if any

pub fn as_pixmap(&self) -> Option<&PixmapHeader>[src]

Retrieve the underlying pixmap header if any

pub fn as_arbitrary(&self) -> Option<&ArbitraryHeader>[src]

Retrieve the underlying arbitrary header if any

pub fn write(&self, writer: &mut dyn Write) -> Result<(), Error>[src]

Write the header back into a binary stream

Trait Implementations

impl From<ArbitraryHeader> for PnmHeader[src]

impl From<BitmapHeader> for PnmHeader[src]

impl From<GraymapHeader> for PnmHeader[src]

impl From<PixmapHeader> for PnmHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

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

impl<T> Instrument 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> SetParameter for T

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.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,