Dither images using wasm plugin
This commit is contained in:
parent
179d0653bb
commit
92ec72ab4b
14 changed files with 116 additions and 15 deletions
BIN
showbits-thermal-printer/src/documents/image/image.png
Normal file
BIN
showbits-thermal-printer/src/documents/image/image.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 370 KiB |
1
showbits-thermal-printer/src/documents/image/lib.typ
Symbolic link
1
showbits-thermal-printer/src/documents/image/lib.typ
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../lib.typ
|
||||
4
showbits-thermal-printer/src/documents/image/main.typ
Normal file
4
showbits-thermal-printer/src/documents/image/main.typ
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#import "lib.typ";
|
||||
#show: it => lib.init(it)
|
||||
|
||||
#lib.dither("image.png")
|
||||
24
showbits-thermal-printer/src/documents/image/mod.rs
Normal file
24
showbits-thermal-printer/src/documents/image/mod.rs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
use std::io::Cursor;
|
||||
|
||||
use anyhow::Context;
|
||||
use image::{ImageFormat, RgbaImage};
|
||||
use showbits_typst::Typst;
|
||||
|
||||
pub struct Image {
|
||||
pub image: RgbaImage,
|
||||
}
|
||||
|
||||
impl Image {
|
||||
pub fn into_typst(self) -> anyhow::Result<Typst> {
|
||||
let mut bytes: Vec<u8> = Vec::new();
|
||||
self.image
|
||||
.write_to(&mut Cursor::new(&mut bytes), ImageFormat::Png)
|
||||
.context("failed to encode image as png")?;
|
||||
|
||||
let typst = super::typst_with_lib()
|
||||
.with_file("/image.png", bytes)
|
||||
.with_main_file(include_str!("main.typ"));
|
||||
|
||||
Ok(typst)
|
||||
}
|
||||
}
|
||||
1
showbits-thermal-printer/src/documents/image/plugin.wasm
Symbolic link
1
showbits-thermal-printer/src/documents/image/plugin.wasm
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../plugin.wasm
|
||||
|
|
@ -20,4 +20,14 @@
|
|||
// the same size after tearing off the paper.
|
||||
#let feed = v(64pt + 32pt)
|
||||
|
||||
#import plugin("plugin.wasm") as plugin
|
||||
////////////
|
||||
// Plugin //
|
||||
////////////
|
||||
|
||||
#import plugin("plugin.wasm") as p
|
||||
|
||||
#let dither(path) = {
|
||||
let bytes = read(path, encoding: none)
|
||||
let dithered = p.dither(bytes)
|
||||
image(dithered)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue