use std::fmt::{Debug, Error, Formatter};
use std::ops::{Deref, DerefMut};
#[cfg(feature = "img")]
use image::*;
use libwebp_sys::WebPFree;
pub struct WebPMemory(pub(crate) *mut u8, pub(crate) usize);
impl Debug for WebPMemory {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> {
f.debug_struct("WebpMemory").finish()
}
}
impl Drop for WebPMemory {
fn drop(&mut self) {
unsafe {
WebPFree(self.0 as _)
}
}
}
impl Deref for WebPMemory {
type Target = [u8];
fn deref(&self) -> &Self::Target {
unsafe { std::slice::from_raw_parts(self.0, self.1) }
}
}
impl DerefMut for WebPMemory {
fn deref_mut(&mut self) -> &mut Self::Target {
unsafe { std::slice::from_raw_parts_mut(self.0, self.1) }
}
}
pub struct WebPImage {
data: WebPMemory,
layout: PixelLayout,
width: u32,
height: u32,
}
impl WebPImage {
pub(crate) fn new(data: WebPMemory, layout: PixelLayout, width: u32, height: u32) -> Self {
Self { data, layout, width, height }
}
#[cfg(feature = "img")]
pub fn as_image(&self) -> DynamicImage {
if self.layout.is_alpha() {
let image = ImageBuffer::from_raw(
self.width,
self.height,
self.data.to_owned(),
).expect("ImageBuffer couldn't be created");
DynamicImage::ImageRgba8(image)
} else {
let image = ImageBuffer::from_raw(
self.width,
self.height,
self.data.to_owned(),
).expect("ImageBuffer couldn't be created");
DynamicImage::ImageRgb8(image)
}
}
pub fn width(&self) -> u32 {
self.width
}
pub fn height(&self) -> u32 {
self.height
}
}
impl Deref for WebPImage {
type Target = [u8];
fn deref(&self) -> &Self::Target {
self.data.deref()
}
}
impl DerefMut for WebPImage {
fn deref_mut(&mut self) -> &mut Self::Target {
self.data.deref_mut()
}
}
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum PixelLayout {
Rgb,
Rgba,
}
impl PixelLayout {
pub fn is_alpha(self) -> bool {
self == PixelLayout::Rgba
}
}