美文网首页
图片转base64

图片转base64

作者: M_Events | 来源:发表于2018-11-02 16:47 被阅读9次
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title></title>
    </head>
    <body>
      <input type="file" id="file"/>
    </body>
    <script>
      file.onchange = function() {
        var file = this.files[0];
        if(file) {
          if(/(image)/g.test(file.type)) {
            var reader = new FileReader(),
                imgUrlBase64 = reader.readAsDataURL(file);
            reader.onload = function() {
              console.log(reader.result);
            }
          }
        }
      }
    </script>
    </html>

    相关文章

      网友评论

          本文标题:图片转base64

          本文链接:https://www.haomeiwen.com/subject/grycxqtx.html