Skip to main content

ImageEncoder

Struct ImageEncoder 

Source
pub struct ImageEncoder { /* private fields */ }
Expand description

Encodes a single VideoFrame to a still image file.

The output format is inferred from the file extension: .jpg/.jpeg, .png, .bmp, .tif/.tiff, or .webp.

§Example

use ff_encode::ImageEncoder;
use ff_format::PixelFormat;

let encoder = ImageEncoder::create("thumbnail.jpg")
    .width(320)
    .height(240)
    .quality(85)
    .build()?;
encoder.encode(&frame)?;

Implementations§

Source§

impl ImageEncoder

Source

pub fn create(path: impl AsRef<Path>) -> ImageEncoderBuilder

Start building an image encoder that writes to path.

This is infallible; extension validation happens in ImageEncoderBuilder::build.

Source

pub fn new(path: impl AsRef<Path>) -> ImageEncoderBuilder

Alias for create.

Source

pub fn encode(self, frame: &VideoFrame) -> Result<(), EncodeError>

Encode frame and write it to the output file.

If width or height were set on the builder and differ from the source frame dimensions, swscale is used to resize. If pixel_format was set and differs from the frame format, swscale performs conversion.

§Errors

Returns an error if the FFmpeg encoder is unavailable, the output file cannot be created, or encoding fails.

Trait Implementations§

Source§

impl Debug for ImageEncoder

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.