Struct image::codecs::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<()>
[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
impl RefUnwindSafe for PnmHeader
impl Send for PnmHeader
impl Sync for PnmHeader
impl Unpin for PnmHeader
impl UnwindSafe for PnmHeader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Pointable for T
[src][+]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,