[−][src]Struct gif::Encoder
GIF encoder.
Methods
impl<W: Write> Encoder<W>
[src]
impl<W: Write> Encoder<W>
pub fn new(w: W, width: u16, height: u16, global_palette: &[u8]) -> Result<Self>
[src]
pub fn new(w: W, width: u16, height: u16, global_palette: &[u8]) -> Result<Self>
Creates a new encoder.
global_palette
gives the global color palette in the format [r, g, b, ...]
,
if no global palette shall be used an empty slice may be supplied.
pub fn write_global_palette(self, palette: &[u8]) -> Result<Self>
[src]
pub fn write_global_palette(self, palette: &[u8]) -> Result<Self>
Writes the global color palette.
pub fn write_frame(&mut self, frame: &Frame) -> Result<()>
[src]
pub fn write_frame(&mut self, frame: &Frame) -> Result<()>
Writes a frame to the image.
Note: This function also writes a control extension if necessary.
pub fn write_extension(&mut self, extension: ExtensionData) -> Result<()>
[src]
pub fn write_extension(&mut self, extension: ExtensionData) -> Result<()>
Writes an extension to the image.
It is normally not necessary to call this method manually.
pub fn write_raw_extension(&mut self, func: u8, data: &[&[u8]]) -> Result<()>
[src]
pub fn write_raw_extension(&mut self, func: u8, data: &[&[u8]]) -> Result<()>
Writes a raw extension to the image.
This method can be used to write an unsupported extesion to the file. func
is the extension
identifier (e.g. Extension::Application as u8
). data
are the extension payload blocks. If any
contained slice has a lenght > 255 it is automatically divided into sub-blocks.
Trait Implementations
impl<W: Write> Parameter<Encoder<W>> for Repeat
[src]
impl<W: Write> Parameter<Encoder<W>> for Repeat
type Result = Result<(), Error>
Result type of set_param
.
fn set_param(self, this: &mut Encoder<W>) -> Self::Result
[src]
fn set_param(self, this: &mut Encoder<W>) -> Self::Result
Sets self
as a parameter of Object
.
impl<W: Write> Drop for Encoder<W>
[src]
impl<W: Write> Drop for Encoder<W>
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more