1
2
3
4
5
6
7
8
import { text2png } from "https://esm.town/v/nilslice/libtext2png";
export default async function(req: Request): Promise<Response> {
const img = await text2png("Just give me the PNG", "magenta", 30); // returns a `Blob`
return new Response(img, {
headers: { "Content-type": "image/png" },
});
}