图片与Base64的转换
程序员文章站
2023-11-11 14:23:58
图片转为Base64 Base64转为图片 这里在转码时,使用正则表达式自动甄别图片是什么类型的。 ......
图片转为base64
// 图片转化成base64字符串 public static string getimagestr() {// 将图片文件转化为字节数组字符串,并对其进行base64编码处理 string imgfile = "c:/image1/2.png";// 待处理的图片 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(); } // 对字节数组base64编码 base64encoder encoder = new base64encoder(); return encoder.encode(data);// 返回base64编码过的字节数组字符串 }
base64转为图片
public static boolean generateimage(string imgstr,string imgfilepath) { // 对字节数组字符串进行base64解码并生成图片 if (imgstr == null) // 图像数据为空 return false; base64decoder decoder = new base64decoder(); try { // base64解码 string basevalue = imgstr.replaceall(" ", "+");//前台在用ajax传base64值的时候会把base64中的+换成空格,所以需要替换回来。 string s = basevalue.replaceall("data(.*?);base64,",""); byte[] b = decoder.decodebuffer(s); imgstr = imgstr.replace("base64,", ""); for (int i = 0; i < b.length; ++i) { if (b[i] < 0) {// 调整异常数据 b[i] += 256; } } // 生成jpeg图片 outputstream out = new fileoutputstream(imgfilepath); out.write(b); out.flush(); out.close(); return true; } catch (exception e) { return false; } }
这里在转码时,使用正则表达式自动甄别图片是什么类型的。
上一篇: [PHP] 简单多进程并发
推荐阅读
-
视频如何转换成GIF?万兴优转将图片和视频转换成GIF的方法
-
Shell脚本中不同进制数据转换的例子(二进制、八进制、十六进制、base64)
-
angularJs中json数据转换与本地存储的实例
-
java Bean与json对象间的转换实例讲解
-
ASP实现GB2312字符与区位码的相互转换的代码
-
精妙的SQL和SQL SERVER 与ACCESS、EXCEL的数据导入导出转换
-
精妙的SQL和SQL SERVER 与ACCESS、EXCEL的数据导入导出转换
-
PHP把JPEG图片转换成Progressive JPEG的方法
-
WinForm实现的图片拖拽与缩放功能示例
-
java整数与byte数组的转换实现代码