Struct 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]
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<ArbitraryHeader> for PnmHeader
[src]fn from(header: ArbitraryHeader) -> Self
[src]
impl From<BitmapHeader> for PnmHeader
[src]
impl From<BitmapHeader> for PnmHeader
[src]fn from(header: BitmapHeader) -> Self
[src]
impl From<GraymapHeader> for PnmHeader
[src]
impl From<GraymapHeader> for PnmHeader
[src]fn from(header: GraymapHeader) -> Self
[src]
impl From<PixmapHeader> for PnmHeader
[src]
impl From<PixmapHeader> for PnmHeader
[src]