Skip to content

Instantly share code, notes, and snippets.

@minmaxdata
Forked from madhums/base64-image-upload.js
Created August 3, 2019 18:31
Show Gist options
  • Save minmaxdata/3ddf103b8a9b84db72f5ac69cc8ebcb1 to your computer and use it in GitHub Desktop.
Save minmaxdata/3ddf103b8a9b84db72f5ac69cc8ebcb1 to your computer and use it in GitHub Desktop.
save base64 encoded image
/*
* Taken from http://stackoverflow.com/questions/5867534/how-to-save-canvas-data-to-file/5971674#5971674
*/
var fs = require('fs');
// string generated by canvas.toDataURL()
var img = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0"
+ "NAAAAKElEQVQ4jWNgYGD4Twzu6FhFFGYYNXDUwGFpIAk2E4dHDRw1cDgaCAASFOffhEIO"
+ "3gAAAABJRU5ErkJggg==";
// strip off the data: url prefix to get just the base64-encoded bytes
var data = img.replace(/^data:image\/\w+;base64,/, "");
var buf = new Buffer(data, 'base64');
fs.writeFile('image.png', buf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment