Struct titanium::desktop::gui::libdruid::piet::image_crate::codecs::ico::IcoEncoder
pub struct IcoEncoder<W>where
W: Write,{ /* private fields */ }
Expand description
ICO encoder
Implementations§
§impl<W> IcoEncoder<W>where
W: Write,
impl<W> IcoEncoder<W>where W: Write,
pub fn new(w: W) -> IcoEncoder<W>
pub fn new(w: W) -> IcoEncoder<W>
Create a new encoder that writes its output to w
.
pub fn encode(
self,
data: &[u8],
width: u32,
height: u32,
color: ColorType
) -> Result<(), ImageError>
👎Deprecated: Use IcoEncoder::write_image
instead. Beware that write_image
has a different endianness convention
pub fn encode( self, data: &[u8], width: u32, height: u32, color: ColorType ) -> Result<(), ImageError>
IcoEncoder::write_image
instead. Beware that write_image
has a different endianness conventionEncodes the image image
that has dimensions width
and
height
and ColorType
c
. The dimensions of the image
must be between 1 and 256 (inclusive) or an error will be returned.
Expects data to be big endian.
pub fn encode_images(self, images: &[IcoFrame<'_>]) -> Result<(), ImageError>
pub fn encode_images(self, images: &[IcoFrame<'_>]) -> Result<(), ImageError>
Takes some IcoFrame
s and encodes them into an ICO.
images
is a list of images, usually ordered by dimension, which
must be between 1 and 65535 (inclusive) in length.
Trait Implementations§
§impl<W> ImageEncoder for IcoEncoder<W>where
W: Write,
impl<W> ImageEncoder for IcoEncoder<W>where W: Write,
§fn write_image(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ColorType
) -> Result<(), ImageError>
fn write_image( self, buf: &[u8], width: u32, height: u32, color_type: ColorType ) -> Result<(), ImageError>
Write an ICO image with the specified width, height, and color type.
For color types with 16-bit per channel or larger, the contents of buf
should be in
native endian.
WARNING: In image 0.23.14 and earlier this method erroneously expected buf to be in big endian.
Auto Trait Implementations§
impl<W> RefUnwindSafe for IcoEncoder<W>where W: RefUnwindSafe,
impl<W> Send for IcoEncoder<W>where W: Send,
impl<W> Sync for IcoEncoder<W>where W: Sync,
impl<W> Unpin for IcoEncoder<W>where W: Unpin,
impl<W> UnwindSafe for IcoEncoder<W>where W: UnwindSafe,
Blanket Implementations§
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
§fn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere U: RoundFrom<T>,
§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.