Image processing library?
I have a Worker function that uses Browser rendering and Puppeteer to capture a screenshot. I want to convert the image to 8bit grayscale.
Usually I would use a library like
imagescript
, upng-js
but it didn't work with workers.
What is the best way to achive this?
Sample code that I tried.
Error:
11 Replies
Have you tried npm install
@cf-wasm/photon
, https://github.com/silvia-odwyer/photon, I believe this is the recommended one.Thanks, let me check it out and report back. I was searching this sever for "image processing" and so far haven't found anything that works.
That's the one i found when I was researching before
What did you use it for?
I was going to use it to preprocess some images before OCR but just done it locally in the end
The Images Transformation API has brightness, contrast and saturation options. Probably not quite what you're looking for
I found many libs under cf-wasm. Just need to find what’s the best way to convert the image into 8 bit grayscale.
worked for me
I tried the same except with png, grayscale conversion works but I need to convert it into 8 bit gray format. It is for kindle which needs this format.

Success!
After lots of wrestling with LLMs I managed to get the AI Slop to deliver.

Great glad you could get it working