1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
use std::{path::PathBuf, sync::Arc};
use image::{imageops::FilterType, GenericImageView, RgbaImage};
use parking_lot::Mutex;
use wild_doc_script::{
anyhow::Result, async_trait, IncludeAdaptor, Stack, WildDocScript, WildDocValue,
};
pub struct WdImage {}
fn var2u32(value: &str, stack: &Stack) -> Option<u32> {
if value.starts_with("$") {
let value = unsafe { std::str::from_utf8_unchecked(&value.as_bytes()[1..]) };
if let Some(WildDocValue::Number(v)) = stack.get(&Arc::new(value.into())) {
if let Some(v) = v.as_u64() {
return Some(v as u32);
}
}
} else {
if let Ok(v) = value.parse::<u32>() {
return Some(v);
}
}
None
}
#[async_trait(?Send)]
impl WildDocScript for WdImage {
fn new(_: Arc<Mutex<Box<dyn IncludeAdaptor + Send>>>, _: PathBuf, _: &Stack) -> Result<Self>
where
Self: Sized,
{
Ok(Self {})
}
async fn evaluate_module(&mut self, _: &str, _: &str, _: &Stack) -> Result<()> {
Ok(())
}
async fn eval(&mut self, code: &str, stack: &Stack) -> Result<WildDocValue> {
let splited: Vec<&str> = code.split("?").collect();
if let Some(image_var) = splited.get(0) {
if let Some(WildDocValue::Binary(image)) = stack.get(&Arc::new(image_var.to_string())) {
if let Some(param) = splited.get(1) {
if let Ok(mut image) = image::load_from_memory(image) {
let mut w = None;
let mut h = None;
let mut mode: Option<&str> = None;
for p in param.split("&").into_iter() {
let pp: Vec<&str> = p.split("=").collect();
if pp.len() == 2 {
let value = unsafe { pp.get_unchecked(1) };
match unsafe { pp.get_unchecked(0).as_ref() } {
"w" => {
w = var2u32(value, stack);
}
"h" => {
h = var2u32(value, stack);
}
"m" => {
if value.starts_with("$") {
if let Some(WildDocValue::String(v)) =
stack.get(&Arc::new(
unsafe {
std::str::from_utf8_unchecked(
&value.as_bytes()[1..],
)
}
.into(),
))
{
mode = Some(v);
}
} else {
mode = Some(value);
}
}
_ => {}
}
}
}
if w.is_some() && h.is_none() {
let r = image.width() as f32 / w.unwrap() as f32;
h = Some((image.height() as f32 * r) as u32);
} else if w.is_none() && h.is_some() {
let r = image.height() as f32 / h.unwrap() as f32;
w = Some((image.width() as f32 * r) as u32);
}
if let (Some(w), Some(h)) = (w, h) {
image = match mode {
Some("fit") => image.resize(w, h, FilterType::Triangle),
Some("cover") => image.resize_to_fill(w, h, FilterType::Triangle),
Some("contain") => {
let resized = image.resize(w, h, FilterType::Triangle);
let resized_w = resized.width();
let resized_h = resized.height();
if resized_w != w || resized_h != h {
let mut image = RgbaImage::new(w, h);
let offset_x = (w - resized_w) / 2;
let offset_y = (h - resized_h) / 2;
for y in 0..resized_h {
for x in 0..resized_w {
image.put_pixel(
x + offset_x,
y + offset_y,
resized.get_pixel(x, y),
);
}
}
image.into()
} else {
resized
}
}
Some("crop") => image.crop_imm(
(image.width() - w) / 2,
(image.height() - h) / 2,
w,
h,
),
_ => image.resize_exact(w, h, FilterType::Triangle),
};
}
let mut buffer = std::io::Cursor::new(vec![]);
let _ = image.write_to(&mut buffer, image::ImageOutputFormat::WebP);
return Ok(WildDocValue::Binary(buffer.into_inner()));
}
} else {
return Ok(WildDocValue::Binary(image.clone()));
}
}
}
Ok(WildDocValue::Null)
}
}