[][src]Struct image::tiff::TIFFDecoder

pub struct TIFFDecoder<R> where
    R: Read + Seek
{ /* fields omitted */ }

The representation of a TIFF decoder

Currently does not support decoding of interlaced images

Methods

impl<R: Read + Seek> TIFFDecoder<R>[src]

pub fn new(r: R) -> ImageResult<TIFFDecoder<R>>[src]

Create a new decoder that decodes from the stream r

pub fn init(self) -> ImageResult<TIFFDecoder<R>>[src]

Initializes the decoder.

pub fn next_image(self) -> ImageResult<TIFFDecoder<R>>[src]

Reads in the next image. If there is no further image in the TIFF file a format error is returned. To determine whether there are more images call TIFFDecoder::more_images instead.

pub fn more_images(&self) -> bool[src]

Returns true if there is at least one more image available.

pub fn byte_order(&self) -> ByteOrder[src]

Returns the byte_order

pub fn read_short(&mut self) -> Result<u16, Error>[src]

Reads a TIFF short value

pub fn read_long(&mut self) -> Result<u32, Error>[src]

Reads a TIFF long value

pub fn read_offset(&mut self) -> Result<[u8; 4], Error>[src]

Reads a TIFF IFA offset/value field

pub fn goto_offset(&mut self, offset: u32) -> Result<()>[src]

Moves the cursor to the specified offset

Trait Implementations

impl<R: Read + Seek> ImageDecoder for TIFFDecoder<R>[src]

fn is_animated(&mut self) -> ImageResult<bool>[src]

Returns true if the image is animated

fn into_frames(self) -> ImageResult<Frames>[src]

Returns the frames of the image Read more

fn load_rect(
    &mut self,
    x: u32,
    y: u32,
    length: u32,
    width: u32
) -> ImageResult<Vec<u8>>
[src]

Decodes a specific region of the image, represented by the rectangle starting from x and y and having length and width Read more

impl<R: Debug> Debug for TIFFDecoder<R> where
    R: Read + Seek
[src]

Auto Trait Implementations

impl<R> Send for TIFFDecoder<R> where
    R: Send

impl<R> Sync for TIFFDecoder<R> where
    R: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> Any for T where
    T: 'static + ?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> BorrowMut for T where
    T: ?Sized
[src]

impl<T> SetParameter for T[src]

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

Sets value as a parameter of self.