This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LoredMarkdown/packages/banners/src/text-svg.js
2023-12-01 15:32:52 -03:00

15 lines
348 B
JavaScript

import * as typr from '@fredli74/typr';
const buffer = await fetch(
import.meta.resolve('/packages/banners/static/CalSans-SemiBold.ttf'),
);
const font = new typr.Font(await buffer.arrayBuffer());
const glyhps = font.stringToGlyphs('Hello world');
const path = font.glyphsToPath(glyhps);
const svg = font.pathToSVG(path);
export default svg;