ba64
v3.0.9
Published
A small npm module for saving base 64 encoded images to your file system.
Downloads
995
Readme
ba64
A tiny npm module for saving Base64 encoded images that are part of data URLs to your file system. This is useful for saving images that have been uploaded to the browser via FileReader.readAsDataUrl()
.
Installation
npm i ba64 -S
Example
var ba64 = require("ba64"),
data_url = "data:image/jpeg;base64,[Base64 encoded image goes here]";
// Save the image synchronously.
ba64.writeImageSync("myimage", data_url); // Saves myimage.jpeg.
// Or save the image asynchronously.
ba64.writeImage("myimage", data_url, function(err){
if (err) throw err;
console.log("Image saved successfully");
// do stuff
});
API
# ba64.writeImage(path/to/file_name, data_url, callback)
Asynchronously saves the Base64 encoded image to the file system. file_name
should not include the file extension; ba64 will do that for you.
# ba64.writeImageSync(path/to/file_name, data_url)
Synchronously saves the Base64 encoded image to the file system. file_name
should not include the file extension; ba64 will do that for you.
Helper functions
# ba64.getExt(data_url)
Returns the file extension of the Base64 encoded image.
# ba64.getBa64Img(data_url)
Returns the Base64 encoded image without the data:
scheme prefix.