JavajQuery图⽚base64互转两种⽅案//⽅案1 纯前端实现
/*********** START ******  纯前端实现 Base64图⽚互转换********** START ******/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<title>jquery 图⽚base64</title>
<script src="./jquery-1.11.3.min.js"></script><!-- 引⽤jquery -->
</head>
<body>
<input id="testFile" type="file">
<hr>
<img id="testImg" >
<hr>
<textarea id="testArea" ></textarea>
<input id="btnTest" type="button" value="提交base" />
</body>
<script>
$("#testPhone").click(function () {
$("#testFile").click();
});
$("#testFile").change(function () {
run(this, function (data) {
$('#testImg').attr('src', data);
$('#testArea').val(data);
});
});
$("#btnTest").click(function () {
$.ajax({
url: "/usercenter/testbaseaction",
type: "post",
dataType: "json",
data: {
"content": $("#testArea").val(),
},
async: false,
success: function (result) {
jquery在线图片if (result.Code == 200) {
alert(result.Data);
} else {
}
}
});
});
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+/.pe)) {
alert("请确保⽂件为图像类型");
return false;
}
var reader = new FileReader();
get_sult);
}
} catch (e) {
alert('图⽚转Base64出错啦!' + e.toString())
}
}
}
</script>
</html>
/******** END ****** END ******纯前端 Base64图⽚互转换******** END ******* END ******/
//⽅案2 纯后端实现
/******START*****START***纯后端⼝实现 JAVA Base64图⽚互转换******START*****START***/
/**
* @Title: GetImageStrFromPath
* @Description: TODO(将⼀张本地图⽚转化成Base64字符串)
* @param imgPath 图⽚路径
* @return
*/
public static String GetImageStrFromPath(String imgPath) {
InputStream in = null;
byte[] data = null;
// 读取图⽚字节数组
try {
in = new FileInputStream(imgPath);
data = new byte[in.available()];
in.close();
} catch (IOException e) {
e.printStackTrace();
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
// 返回Base64编码过的字节数组字符串
de(data);
}
/**
* @Title: GenerateImage
* @Description: TODO(base64字符串转化成图⽚)
* @param imgStr 图⽚base64字符串
* @param imgFilePath 存图⽚的路径
* @return
*/
public static boolean GenerateImage(String imgStr,String imgFilePath) {
if (imgStr == null) // 图像数据为空
return false;
BASE64Decoder decoder = new BASE64Decoder();
try {
try {
// Base64解码
byte[] b = decoder.decodeBuffer(imgStr);
for (int i = 0; i < b.length; ++i) {
if (b[i] < 0) {// 调整异常数据
b[i] += 256;
}
}
// ⽣成jpg图⽚
// String imgFilePath = "C://Users//LQ//Downloads//222.jpg";
OutputStream out = new FileOutputStream(imgFilePath);
out.write(b);
out.flush();
out.close();
return true;
} catch (Exception e) {
return false;
}
}
//测试
public static void main(String[] args){
basePath="D:\\tmp\\6fc83a591689474295a9fae8790e956c\\img\\funnel_one.png";        String cc= GetImageStrFromPath(basePath);
System.out.println(cc);
GenerateImage(cc);
}
/****** END ***** END ***纯后端⼝实现 JAVA Base64图⽚互转换****** END ***** END ***/

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。