DataURI 允许在HTML文档中嵌入小文件,可以使用img
标签或CSS
嵌入转换后的Base64
编码,减少HTTP请求,加快小图像的加载时间。 经过Base64
编码后的文件体积一般比源文件大30%左右。
/**
* 将网络图片进行Base64编码
*
* @param imageUrl
* @param formatName
* @return
*/
public static String encodeImgageToBase64(URL imageUrl, String formatName) {
ByteArrayOutputStream outputStream = null;
try {
BufferedImage bufferedImage = ImageIO.read(imageUrl);
outputStream = new ByteArrayOutputStream();
ImageIO.write(bufferedImage, formatName, outputStream);
} catch (MalformedURLException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
// 返回Base64编码过的字节数组字符串
return encoder.encode(outputStream.toByteArray());
}
/**
* 将本地图片进行Base64编码
*
* @param imageFile
* @param formatName
* @return
*/
public static String encodeImgageToBase64(File imageFile, String formatName) {
ByteArrayOutputStream outputStream = null;
try {
BufferedImage bufferedImage = ImageIO.read(imageFile);
outputStream = new ByteArrayOutputStream();
ImageIO.write(bufferedImage, formatName, outputStream);
} catch (MalformedURLException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
// 返回Base64编码过的字节数组字符串
return encoder.encode(outputStream.toByteArray());
}
/**
* 将Base64编码的图片进行解码,并保存到指定目录
*
* @param base64
* @param path
* @param imgName
*/
public static void decodeBase64ToImage(String base64, String path, String imgName) {
BASE64Decoder decoder = new BASE64Decoder();
try {
FileOutputStream write = new FileOutputStream(new File(path + imgName));
byte[] decoderBytes = decoder.decodeBuffer(base64);
write.write(decoderBytes);
write.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/* 在CSS中使用 */
.box {
background-image: url("data:image/jpg;base64,/9j/4QMZR...");
}
<!-- 在HTML中使用 -->
<img src="data:image/jpg;base64,/9j/4QMZR..." />
使用base64图片的优点有:
1、减少http请求次数
2、采用base64的图片随着页面一起下载,因此不会存在跨域请求的问题
3、没有图片更新要上传图片,因此不会造成清理图片缓存的问题
使用base64图片的缺点:
1、增加css文件的大小
2、浏览器兼容性
3、解析css的时间增长
本文由 新逸Cary 创作,如果您觉得本文不错,请随意赞赏
采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
原文链接:https://blog.xinac.cn/archives/java-base64.html
最后更新:2020-08-03 11:00:29
Update your browser to view this website correctly. Update my browser now