Image To Base64
0
Support File Type : GIF, JPEG, and PNG
🥝 Preview
🍋 About This Tool
This tool use new FileReader().readAsDataURL(file) To Encode File Become Base64 String.
Use FileReader library
const FR = new FileReader();
FR.onload=()=> {
console.log(FR.result)
})
FR.readAsDataURL(File)