LoginSignup
6
9

More than 5 years have passed since last update.

Fileオブジェクトをbase64エンコードする

Posted at
base64converter.js
function convert(file) {
    const fr = new FileReader();
        fr.onload = (e) => {
            // readAsDataURL実行後の処理
            // e.target.resultでbase64文字列を取得
        });
    };
    fr.readAsDataURL(file);
}
6
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
9