e62rs 1.5.0

An in-terminal E621/926 browser.
Documentation
//! image encoding stuff
use {
    crate::display::image::source::ImageData,
    color_eyre::eyre::{Context, Result},
    icy_sixel::EncodeOptions,
};

/// encodes rgb image data to sixel format
pub struct SixelEncoder {
    /// encoder options
    options: EncodeOptions,
}

impl SixelEncoder {
    /// makes a new encoder using defaults
    pub fn new() -> Self {
        Self {
            options: EncodeOptions::default(),
        }
    }

    /// makes a new encoder with custom encoding options
    pub fn with_options(options: EncodeOptions) -> Self {
        Self { options }
    }

    /// update the encoding options
    pub fn set_options(&mut self, options: EncodeOptions) {
        self.options = options;
    }

    /// encode image data to a sixel string
    pub fn encode(&self, data: &ImageData) -> Result<String> {
        icy_sixel::sixel_encode(&data.rgb_data, data.width, data.height, &self.options)
            .context("Failed to encode sixel")
            .map(|s| s.to_string())
    }

    /// encode raw rgb888 data to sixel format
    pub fn encode_raw(&self, rgb_data: &[u8], width: usize, height: usize) -> Result<String> {
        icy_sixel::sixel_encode(rgb_data, width, height, &self.options)
            .context("Failed to encode sixel")
            .map(|s| s.to_string())
    }
}

impl Default for SixelEncoder {
    fn default() -> Self {
        Self::new()
    }
}