Struct image::tga::TgaDecoder [−][src]
pub struct TgaDecoder<R> { /* fields omitted */ }
The representation of a TGA decoder
Implementations
impl<R: Read + Seek> TgaDecoder<R>
[src]
impl<R: Read + Seek> TgaDecoder<R>
[src]pub fn new(r: R) -> ImageResult<TgaDecoder<R>>
[src]
Create a new decoder that decodes from the stream r
Trait Implementations
impl<'a, R: 'a + Read + Seek> ImageDecoder<'a> for TgaDecoder<R>
[src]
impl<'a, R: 'a + Read + Seek> ImageDecoder<'a> for TgaDecoder<R>
[src]type Reader = TGAReader<R>
The type of reader produced by into_reader
.
fn dimensions(&self) -> (u32, u32)
[src]
fn color_type(&self) -> ColorType
[src]
fn scanline_bytes(&self) -> u64
[src]
fn into_reader(self) -> ImageResult<Self::Reader>
[src]
fn read_image(self, buf: &mut [u8]) -> ImageResult<()>
[src]
fn original_color_type(&self) -> ExtendedColorType
[src]
fn total_bytes(&self) -> u64
[src]
fn read_image_with_progress<F: Fn(Progress)>(
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>
[src]
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>
Auto Trait Implementations
impl<R> RefUnwindSafe for TgaDecoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for TgaDecoder<R> where
R: Send,
R: Send,
impl<R> Sync for TgaDecoder<R> where
R: Sync,
R: Sync,
impl<R> Unpin for TgaDecoder<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for TgaDecoder<R> where
R: UnwindSafe,
R: UnwindSafe,