qoi/src/encode.rs

145 lines
4.5 KiB
Rust
Raw Normal View History

use crate::consts::{QOI_HEADER_SIZE, QOI_OP_INDEX, QOI_OP_RUN, QOI_PADDING, QOI_PADDING_SIZE};
use crate::error::{Error, Result};
use crate::header::Header;
use crate::pixel::{Pixel, SupportedChannels};
use crate::types::{Channels, ColorSpace};
2022-01-02 17:16:05 +00:00
use crate::utils::{unlikely, BytesMut};
2021-12-31 10:37:56 +00:00
#[allow(clippy::cast_possible_truncation)]
fn qoi_encode_impl<const N: usize>(out: &mut [u8], data: &[u8]) -> Result<usize>
where
2022-01-02 11:02:44 +00:00
Pixel<N>: SupportedChannels,
{
let out_size = out.len();
2022-01-02 17:16:05 +00:00
let mut buf = BytesMut::new(out);
let mut index = [Pixel::new(); 256];
let mut px_prev = Pixel::new().with_a(0xff);
let mut run = 0_u8;
2022-01-02 11:02:44 +00:00
let mut px = Pixel::<N>::new().with_a(0xff);
let n_pixels = data.len() / N;
2022-01-02 11:02:44 +00:00
for (i, chunk) in data.chunks_exact(N).enumerate() {
px.read(chunk);
if px == px_prev {
run += 1;
if run == 62 || unlikely(i == n_pixels - 1) {
2022-01-02 17:16:05 +00:00
buf = buf.write_one(QOI_OP_RUN | (run - 1));
run = 0;
}
} else {
if run != 0 {
2022-01-02 17:16:05 +00:00
buf = buf.write_one(QOI_OP_RUN | (run - 1));
run = 0;
}
let index_pos = px.hash_index();
2022-01-02 11:02:44 +00:00
let index_px = &mut index[index_pos as usize];
let px_rgba = px.as_rgba(0xff);
if *index_px == px_rgba {
2022-01-02 17:16:05 +00:00
buf = buf.write_one(QOI_OP_INDEX | index_pos);
} else {
*index_px = px_rgba;
2022-01-02 17:16:05 +00:00
buf = px.encode_into(px_prev, buf);
}
px_prev = px;
}
}
2022-01-02 17:16:05 +00:00
buf = buf.write_many(&QOI_PADDING);
Ok(out_size.saturating_sub(buf.len()))
}
2021-12-01 16:57:20 +00:00
#[inline]
fn qoi_encode_impl_all(out: &mut [u8], data: &[u8], channels: Channels) -> Result<usize> {
match channels {
Channels::Rgb => qoi_encode_impl::<3>(out, data),
Channels::Rgba => qoi_encode_impl::<4>(out, data),
}
}
2021-12-01 16:57:20 +00:00
#[inline]
pub fn encoded_size_limit(width: u32, height: u32, channels: impl Into<u8>) -> usize {
let (width, height) = (width as usize, height as usize);
let n_pixels = width.saturating_mul(height);
QOI_HEADER_SIZE
+ n_pixels.saturating_mul(channels.into() as usize)
+ n_pixels
+ QOI_PADDING_SIZE
}
2021-12-01 16:57:20 +00:00
#[inline]
pub fn qoi_encode_to_buf(
buf: impl AsMut<[u8]>, data: impl AsRef<[u8]>, width: u32, height: u32,
) -> Result<usize> {
QoiEncoder::new(&data, width, height)?.encode_to_buf(buf)
}
#[inline]
pub fn qoi_encode_to_vec(data: impl AsRef<[u8]>, width: u32, height: u32) -> Result<Vec<u8>> {
QoiEncoder::new(&data, width, height)?.encode_to_vec()
}
pub struct QoiEncoder<'a> {
data: &'a [u8],
header: Header,
}
impl<'a> QoiEncoder<'a> {
#[inline]
pub fn new(data: &'a (impl AsRef<[u8]> + ?Sized), width: u32, height: u32) -> Result<Self> {
let data = data.as_ref();
let mut header =
Header::try_new(width, height, Channels::default(), ColorSpace::default())?;
let size = data.len();
let n_channels = size / header.n_pixels();
if header.n_pixels() * n_channels != size {
return Err(Error::InvalidImageLength { size, width, height });
}
header.channels = Channels::try_from(n_channels.min(0xff) as u8)?;
Ok(Self { data, header })
}
#[inline]
pub const fn with_colorspace(mut self, colorspace: ColorSpace) -> Self {
self.header = self.header.with_colorspace(colorspace);
self
}
#[inline]
pub const fn channels(&self) -> Channels {
self.header.channels
}
#[inline]
pub const fn header(&self) -> &Header {
&self.header
}
#[inline]
pub fn encoded_size_limit(&self) -> usize {
self.header.encoded_size_limit()
}
#[inline]
pub fn encode_to_buf(&self, mut buf: impl AsMut<[u8]>) -> Result<usize> {
let buf = buf.as_mut();
let size_required = self.encoded_size_limit();
if unlikely(buf.len() < size_required) {
return Err(Error::OutputBufferTooSmall { size: buf.len(), required: size_required });
}
let (head, tail) = buf.split_at_mut(QOI_HEADER_SIZE); // can't panic
head.copy_from_slice(&self.header.encode());
let n_written = qoi_encode_impl_all(tail, self.data, self.header.channels)?;
Ok(QOI_HEADER_SIZE + n_written)
}
#[inline]
pub fn encode_to_vec(&self) -> Result<Vec<u8>> {
let mut out = vec![0_u8; self.encoded_size_limit()];
let size = self.encode_to_buf(&mut out)?;
out.truncate(size);
Ok(out)
}
}