svg-wasm
v0.1.6
Published
🎚️ A WASM-powered library for converting SVG images to WebP and JPEG formats.
Readme
svg-wasm
🎚️ A WASM-powered library for converting SVG images to WebP and JPEG formats.
Install:
npm i svg-wasmUsage:
(async () => {
if (!SvgWasm.initialized) {
await SvgWasm.initialize(fetch('https://unpkg.com/svg-wasm/svg_wasm_bg.wasm'));
}
const svg = `<svg>...</svg>`;
await SvgWasm.svg2jpeg(svg); // Uint8Array
await SvgWasm.svg2webp(svg); // Uint8Array
await SvgWasm.svg2pixels(svg); // Uint8Array
})();