Sam
Sam
CDCloudflare Developers
Created by Sam on 3/24/2025 in #workers-help
Image processing library?
No description
12 replies
CDCloudflare Developers
Created by Sam on 3/24/2025 in #workers-help
Image processing library?
No description
12 replies
CDCloudflare Developers
Created by Sam on 3/24/2025 in #workers-help
Image processing library?
I found many libs under cf-wasm. Just need to find what’s the best way to convert the image into 8 bit grayscale.
12 replies
CDCloudflare Developers
Created by Sam on 3/24/2025 in #workers-help
Image processing library?
What did you use it for?
12 replies
CDCloudflare Developers
Created by Sam on 3/24/2025 in #workers-help
Image processing library?
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.
12 replies
CDCloudflare Developers
Created by Sam on 3/19/2025 in #workers-help
Hono + Workers + Browser rendering: How to screenshot a localhost path?
Solved with Claude's help:
// Use the same host as the current request
const host = new URL(c.req.url).origin;
let dashboardUrl = `${host}/api/dashboard/`;
// Use the same host as the current request
const host = new URL(c.req.url).origin;
let dashboardUrl = `${host}/api/dashboard/`;
2 replies