Java 将base64编码字符串转换为图片工具类
2024-01-03 12:00:00
前言
在一些前后端分离项目中,接口方需要前端把图片转换成base64编码字符串,和表单信息一起通过json接口提交。故在后端中,需要对前端传过来的bas64编码字符串转换成图片文件进行存储。
代码
import lombok.extern.slf4j.Slf4j;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Base64;
import java.util.UUID;
/**
* 图片处理工具
* @author rocky
* @date 2024/01/01 17:29
*/
@Slf4j
public class ImageUtils {
/**
* 将base64编码字符串转换为图片
* @param file base64编码
* @param path 图片存储路径
* @return String 文件名
*/
public static String base64ToImage(String file, String path) {
// 解密
OutputStream out = null;
String fileName = UUID.randomUUID().toString() + ".jpg";
String filePath = path + File.separator + fileName;
try {
File image = new File(filePath);
File parent = image.getParentFile();
if (!parent.exists()) {
parent.mkdirs();
}
if (!image.exists()) {
image.createNewFile();
}
// 解密
Base64.Decoder decoder = Base64.getDecoder();
// 去掉base64前缀 data:image/jpeg;base64,
file = file.substring(file.indexOf(",", 1) + 1, file.length());
byte[] b = decoder.decode(file);
// 处理数据
for (int i = 0; i < b.length; ++i) {
if (b[i] < 0) {
b[i] += 256;
}
}
// 保存图片
out = new FileOutputStream(image);
out.write(b);
} catch (IOException e) {
log.error("base64转换图片过程中发生异常", e);
fileName = null;
} finally {
if (out != null) {
try {
out.flush();
out.close();
} catch (IOException e) {
log.error("base64转换图片过程中发生异常", e);
}
}
}
return fileName;
}
}
文章来源:https://blog.csdn.net/qq_24091555/article/details/135356936
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!