Files
documenso/packages/lib/utils/images/svg-to-png.ts
T
2025-12-09 09:19:49 +11:00

6 lines
147 B
TypeScript

import sharp from 'sharp';
export const svgToPng = async (svg: string) => {
return await sharp(Buffer.from(svg)).toFormat('png').toBuffer();
};