当前位置: 首页 > 工具软件 > b64img > 使用案例 >

Base64与img互转

宋鸿云
2023-12-01

1、代码示例:

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import org.apache.commons.codec.binary.Base64;

import sun.misc.BASE64Decoder;

/**
 * 将图片转换为Base64
 * 将base64编码字符串解码成img图片
 * @创建时间 2019-12-02 10:20
 */
public class Img2Base64Util {

    /**
     * 将图片转换成Base64编码
     * @param imgFile 待处理图片
     * @return
     */
    public static String getImgStr(String imgFile) {
        // 将图片文件转化为字节数组字符串,并对其进行Base64编码处理

        InputStream in = null;
        byte[] data = null;
        // 读取图片字节数组
        try {
            in = new FileInputStream(imgFile);
            data = new byte[in.available()];
            in.read(data);
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return new String(Base64.encodeBase64(data));
    }

    /**
     * 对字节数组字符串进行Base64解码并生成图片
     * @param imgStr 图片数据
     * @param imgFilePath 保存图片全路径地址
     * @param filename 保存的附件名称
     * @return
     */
    public static String generateImage(String imgStr, String imgFilePath,String filename) {
       //在替换的时候,注意是不是扩展名为jpeg。如果替换失败,是无法解码成有效的图片的。
    	imgStr=imgStr.replace("data:image/jpeg;base64,", "");
    	//判断保存图片的路径是否存在,如果不存在则创建此路径中。
    	 File file = new File(imgFilePath);
         if (!file.exists()) {
             file.mkdirs();
         }
        if (imgStr == null) // 图像数据为空
            return null;
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            // Base64解码
            byte[] b = decoder.decodeBuffer(imgStr);
            for (int i = 0; i < b.length; ++i) {
                if (b[i] < 0) {// 调整异常数据
                    b[i] += 256;
                }
            }
            
            // 生成jpg图片
            OutputStream out = new FileOutputStream(imgFilePath+filename);
            out.write(b);
            out.flush();
            out.close();
            return filename;
        } catch (Exception e) {
            return null;
        }
    }
}

2、常见问题:

将base64编码字符串解码成img图片时,一定注意要字符串中的“data:image/jpg;base64,”替换为空,否则解码成的图片是无效的。

 类似资料: