使用JS将图片转为Base64

Posted Nihaorz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用JS将图片转为Base64相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>JS 图片转Base64</title>
    <script src="//cdn.bootcss.com/jquery/2.2.0/jquery.min.js"></script>
    <script>
        function run(input_file, get_data) {
            /*input_file:文件按钮对象*/
            /*get_data: 转换成功后执行的方法*/
            if (typeof (FileReader) === \'undefined\') {
                alert("抱歉,你的浏览器不支持 FileReader,不能将图片转换为Base64,请使用现代浏览器操作!");
            } else {
                try {
                    /*图片转Base64 核心代码*/
                    var file = input_file.files[0];
                    //这里我们判断下类型如果不是图片就返回 去掉就可以上传任意文件
                    if (!/image\\/\\w+/.test(file.type)) {
                        alert("请确保文件为图像类型");
                        return false;
                    }
                    var reader = new FileReader();
                    reader.onload = function () {
                        get_data(this.result);
                    }
                    reader.readAsDataURL(file);
                } catch (e) {
                    alert(\'图片转Base64出错啦!\' + e.toString())
                }
            }
        }

        $(function () {
            $("#select_img").change(function () {
                run(this, function (data) {
                    $(\'#test_img\').attr(\'src\', data);
                    $(\'#base64_str\').html(data);
                });
            });
        });
    </script>
</head>
<body>
<input type="file" id="select_img" accept=".png,.jpg,.jpeg,.gif,.bmp">
<hr>
<img style="max-height: 300px; max-width:300px;" id="test_img">
<hr>
<p id="base64_str"></p>
</body>
</html>

 

via:https://www.cnblogs.com/wujingtao/p/5196836.html

 

以上是关于使用JS将图片转为Base64的主要内容,如果未能解决你的问题,请参考以下文章

JavaWeb项目 js图片上传到Oracle转为base64存入数据库

ios将base64字符串转为图片,点击图片全屏展示

用canvas的toDataURL()将图片转为dataURL(base64)水印效果

js中图片base64格式转文件对象

JAVA将图片(本地或者网络资源)转为Base64字符串,将base64字符串存储为本地图片

ajax接口返回图片类型数据,转为base64赋值给img