1.0.1 • Published 11 months ago

cfpf-text-svg-path v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

cfpf-text-svg-path

Convert text to SVG path without native dependence with Cloudflare Pages Functions.

import TextToSVG from "cfpf-text-svg-path";
const textToSVG = new TextToSVG();

export const onRequestGet = async (context) => {
    await textToSVG.load()

    const attributes = {fill: 'black', stroke: 'black'};
    const options = {x: 0, y: 0, fontSize: 72, anchor: 'top', attributes: attributes};
    
    const svg = textToSVG.getSVG(context.params.number, options);

    return new Response(svg, {
        headers: {
            'Content-Type': 'image/svg+xml',
        },
    });
}

License

MIT

Credits

1.0.1

11 months ago

1.0.0

11 months ago