Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 9, 2021 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f6508c26a0949c5979029028027265dd to your computer and use it in GitHub Desktop.
Save parzibyte/f6508c26a0949c5979029028027265dd to your computer and use it in GitHub Desktop.
// Escuchar clic del botón para descargar el canvas
$btnDescargar.onclick = () => {
const enlace = document.createElement('a');
// El título
enlace.download = "Firma.png";
// Convertir la imagen a Base64 y ponerlo en el enlace
enlace.href = $canvas.toDataURL();
// Hacer click en él
enlace.click();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment