img-base64
v1.0.0
Published
image to base64 & base64 to image
Downloads
19
Readme
img-base64
image to base64 & base64 to image
How to use
const {imgToBase64, base64ToImg} = require('img-base64');
async function imgTrans() {
const base64Str = await imgToBase64(filePath);
await base64ToImg(base64Str, fileDir, fileName);
}
imgTrans();