<small id='7gH6E'></small><noframes id='7gH6E'>

    <bdo id='7gH6E'></bdo><ul id='7gH6E'></ul>

    1. <tfoot id='7gH6E'></tfoot>
    2. <i id='7gH6E'><tr id='7gH6E'><dt id='7gH6E'><q id='7gH6E'><span id='7gH6E'><b id='7gH6E'><form id='7gH6E'><ins id='7gH6E'></ins><ul id='7gH6E'></ul><sub id='7gH6E'></sub></form><legend id='7gH6E'></legend><bdo id='7gH6E'><pre id='7gH6E'><center id='7gH6E'></center></pre></bdo></b><th id='7gH6E'></th></span></q></dt></tr></i><div id='7gH6E'><tfoot id='7gH6E'></tfoot><dl id='7gH6E'><fieldset id='7gH6E'></fieldset></dl></div>

        <legend id='7gH6E'><style id='7gH6E'><dir id='7gH6E'><q id='7gH6E'></q></dir></style></legend>

        图片转Base64

        Image convert to Base64(图片转Base64)
        <legend id='VmLXG'><style id='VmLXG'><dir id='VmLXG'><q id='VmLXG'></q></dir></style></legend>

          <bdo id='VmLXG'></bdo><ul id='VmLXG'></ul>
            <tbody id='VmLXG'></tbody>
          <i id='VmLXG'><tr id='VmLXG'><dt id='VmLXG'><q id='VmLXG'><span id='VmLXG'><b id='VmLXG'><form id='VmLXG'><ins id='VmLXG'></ins><ul id='VmLXG'></ul><sub id='VmLXG'></sub></form><legend id='VmLXG'></legend><bdo id='VmLXG'><pre id='VmLXG'><center id='VmLXG'></center></pre></bdo></b><th id='VmLXG'></th></span></q></dt></tr></i><div id='VmLXG'><tfoot id='VmLXG'></tfoot><dl id='VmLXG'><fieldset id='VmLXG'></fieldset></dl></div>

          <small id='VmLXG'></small><noframes id='VmLXG'>

                <tfoot id='VmLXG'></tfoot>

                • 本文介绍了图片转Base64的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  <input type="file" id="asd"/>
                  

                  一旦用户选择(在提交表单之前),我想在 base64 中获取图像

                  I would like to get the image in base64 once the user chose that (before submitting the form)

                  类似:

                  $(input).on('change',function(){
                    var data = $(this).val().base64file(); // it is not a plugin is just an example
                    alert(data);
                  });
                  

                  我阅读了有关 File API 和其他内容的信息,我想要一个简单的跨浏览器解决方案(IE6/IE7 显然不包括在内)

                  I read about File API and other stuffs, I would like a simple and cross-browsers solution (IE6/IE7 excluded obviously)

                  任何帮助表示感谢.

                  推荐答案

                  function readFile() {
                    
                    if (this.files && this.files[0]) {
                      
                      var FR= new FileReader();
                      
                      FR.addEventListener("load", function(e) {
                        document.getElementById("img").src       = e.target.result;
                        document.getElementById("b64").innerHTML = e.target.result;
                      }); 
                      
                      FR.readAsDataURL( this.files[0] );
                    }
                    
                  }
                  
                  document.getElementById("inp").addEventListener("change", readFile);

                  <input id="inp" type='file'>
                  <p id="b64"></p>
                  <img id="img" height="150">

                  (P.S:base64 编码的图像(字符串)是原始图像数据大小的 4/3)

                  (P.S: A base64 encoded image (String) 4/3 the size of the original image data)

                  检查这个答案多张图片上传.

                  浏览器支持:http://caniuse.com/#search=file%20api
                  更多信息:https://developer.mozilla.org/en-US/docs/Web/API/FileReader

                  这篇关于图片转Base64的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Fetch multiple links inside foreach loop(在 foreach 循环中获取多个链接)
                  Backbone Fetch Request is OPTIONS method(Backbone Fetch Request 是 OPTIONS 方法)
                  Fetch API leaks memory in Chrome(Fetch API 在 Chrome 中泄漏内存)
                  How can I download and save a file using the Fetch API? (Node.js)(如何使用 Fetch API 下载和保存文件?(Node.js))
                  Send blob data to node using fetch, multer, express(使用 fetch、multer、express 将 blob 数据发送到节点)
                  Sending a custom User-Agent string along with my headers (fetch)(发送自定义用户代理字符串以及我的标头(获取))
                    <bdo id='N6zai'></bdo><ul id='N6zai'></ul>
                    1. <i id='N6zai'><tr id='N6zai'><dt id='N6zai'><q id='N6zai'><span id='N6zai'><b id='N6zai'><form id='N6zai'><ins id='N6zai'></ins><ul id='N6zai'></ul><sub id='N6zai'></sub></form><legend id='N6zai'></legend><bdo id='N6zai'><pre id='N6zai'><center id='N6zai'></center></pre></bdo></b><th id='N6zai'></th></span></q></dt></tr></i><div id='N6zai'><tfoot id='N6zai'></tfoot><dl id='N6zai'><fieldset id='N6zai'></fieldset></dl></div>
                          <tbody id='N6zai'></tbody>

                      • <small id='N6zai'></small><noframes id='N6zai'>

                        <legend id='N6zai'><style id='N6zai'><dir id='N6zai'><q id='N6zai'></q></dir></style></legend>

                          <tfoot id='N6zai'></tfoot>