base64字符串转化成图片

Posted sung1024

tags:

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

package com.dhht.wechat.util;

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import java.io.*;

/**
* @Author: sh
* @Description: ImgUtil
* @Date: 9:14 2019/7/1
*/
public class ImgUtil


/**
* 图片转化成base64字符串
*
* @param imgPath
* @return
*/
public static String GetImageStr(String imgPath) // 将图片文件转化为字节数组字符串,并对其进行Base64编码处理
String imgFile = imgPath;// 待处理的图片
InputStream in = null;
byte[] data = null;
String encode = null; // 返回Base64编码过的字节数组字符串
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
try
// 读取图片字节数组
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.read(data);
encode = encoder.encode(data);
catch (IOException e)
e.printStackTrace();
finally
try
in.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();


return encode;


/**
* base64字符串转化成图片
*
* @param imgData 图片编码
* @param imgFilePath 存放到本地路径
* @return
* @throws IOException
*/
@SuppressWarnings("finally")
public static boolean GenerateImage(String imgData, String imgFilePath) throws IOException // 对字节数组字符串进行Base64解码并生成图片
if (imgData == null) // 图像数据为空
return false;
BASE64Decoder decoder = new BASE64Decoder();
OutputStream out = null;
try
out = new FileOutputStream(imgFilePath);
// Base64解码
byte[] b = decoder.decodeBuffer(imgData);
for (int i = 0; i < b.length; ++i)
if (b[i] < 0) // 调整异常数据
b[i] += 256;


out.write(b);
catch (FileNotFoundException e)
// TODO Auto-generated catch block
e.printStackTrace();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
finally
out.flush();
out.close();
return true;


以上是关于base64字符串转化成图片的主要内容,如果未能解决你的问题,请参考以下文章

java实现图片转化成base64字符串前端页面直接显示

转换图片为base64

图片与Base64的转换

CKeditor是怎么把图片转化成一些字符串的?我粘贴一张图片进编辑区,查看代码就是一些字符串?

java实现将图片读取成base64字符串,将base64字符串存储为图片。

关于图片与base64相互转换的工具类