pub struct TgaEncoder<W>where
W: Write,{ /* private fields */ }
Expand description
TGA encoder.
Implementations§
Source§impl<W> TgaEncoder<W>where
W: Write,
impl<W> TgaEncoder<W>where
W: Write,
Sourcepub fn new(w: W) -> TgaEncoder<W>
pub fn new(w: W) -> TgaEncoder<W>
Create a new encoder that writes its output to w
.
Sourcepub fn disable_rle(self) -> TgaEncoder<W>
pub fn disable_rle(self) -> TgaEncoder<W>
Disables run-length encoding
Sourcepub fn encode(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ColorType,
) -> Result<(), ImageError>
pub fn encode( self, buf: &[u8], width: u32, height: u32, color_type: ColorType, ) -> Result<(), ImageError>
Encodes the image buf
that has dimensions width
and height
and ColorType
color_type
.
The dimensions of the image must be between 0 and 65535 (inclusive) or an error will be returned.
§Panics
Panics if width * height * color_type.bytes_per_pixel() != data.len()
.
Trait Implementations§
Source§impl<W> ImageEncoder for TgaEncoder<W>where
W: Write,
impl<W> ImageEncoder for TgaEncoder<W>where
W: Write,
Auto Trait Implementations§
impl<W> Freeze for TgaEncoder<W>where
W: Freeze,
impl<W> RefUnwindSafe for TgaEncoder<W>where
W: RefUnwindSafe,
impl<W> Send for TgaEncoder<W>where
W: Send,
impl<W> Sync for TgaEncoder<W>where
W: Sync,
impl<W> Unpin for TgaEncoder<W>where
W: Unpin,
impl<W> UnwindSafe for TgaEncoder<W>where
W: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Originalwhere
Target: VectorizedFrom<Original>,
Source§fn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.