Files
documenso/packages/lib/utils/images/svg-to-png.ts
T

6 lines
147 B
TypeScript

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