Skip to content

Instantly share code, notes, and snippets.

View m01x's full-sized avatar
:electron:
Did you REACT?

m01x m01x

:electron:
Did you REACT?
View GitHub Profile
@Klerith
Klerith / download-image-base-64.ts
Last active April 10, 2025 19:22
Descargar imagen base 64
export const downloadBase64ImageAsPng = async (base64Image: string) => {
// Remover encabezado
base64Image = base64Image.split(';base64,').pop();
const imageBuffer = Buffer.from(base64Image, 'base64');
const folderPath = path.resolve('./', './generated/images/');
fs.mkdirSync(folderPath, { recursive: true });
const imageNamePng = `${ new Date().getTime() }-64.png`;