diff options
author | bptato <nincsnevem662@gmail.com> | 2024-06-27 21:50:31 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-06-28 21:26:33 +0200 |
commit | 8268ba2cf049be1865875e3e01305a500fa533e2 (patch) | |
tree | 7ce60624f9212e65dad0c1a2d168eb6ab7c03ec9 /src/img | |
parent | f9734e2b3900781901bb5f268137bd9adbfc33ef (diff) | |
download | chawan-8268ba2cf049be1865875e3e01305a500fa533e2.tar.gz |
img, loader: add image resizing, misc fixes
* resize images with stb_image_resize * use tee for output handle redirection (redirectToFile blocks) * cache original image files * accept lseek in sandbox * misc stbi fixes For now, I just pulled in stb_image_resize v1. v2 is an extra 150K in size, not sure if it's worth the cost. (Either way, we can always switch later if needed, since the API is almost the same.) Next step: move sixel/kitty encoders to CGI, and cache their output in memory instead of the intermediate RGBA representation.
Diffstat (limited to 'src/img')
-rw-r--r-- | src/img/bitmap.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/img/bitmap.nim b/src/img/bitmap.nim index 70244643..c5df19fc 100644 --- a/src/img/bitmap.nim +++ b/src/img/bitmap.nim @@ -9,8 +9,9 @@ type ImageBitmap* = ref object of Bitmap NetworkBitmap* = ref object of Bitmap - outputId*: int + cacheId*: int imageId*: int + contentType*: string proc newBitmap*(width, height: uint64): ImageBitmap = return ImageBitmap( |