服务器之家

服务器之家 > 正文

Java实现图片与二进制的互相转换

时间:2021-04-19 11:57     来源/作者:我心永恒

本文实例为大家分享了Java图片二进制再将二进制转成图片,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import java.awt.image.BufferedImage; 
import java.io.ByteArrayInputStream; 
import java.io.ByteArrayOutputStream; 
import java.io.File; 
import java.io.IOException; 
 
import javax.imageio.ImageIO; 
 
import sun.misc.BASE64Decoder; 
import sun.misc.BASE64Encoder; 
 
public class TestImageBinary { 
  static BASE64Encoder encoder = new sun.misc.BASE64Encoder(); 
  static BASE64Decoder decoder = new sun.misc.BASE64Decoder(); 
    
  public static void main(String[] args) { 
    System.out.println(getImageBinary()); 
      
    base64StringToImage(getImageBinary()); 
  
    
  static String getImageBinary(){ 
    File f = new File("c://20090709442.jpg");    
    BufferedImage bi; 
    try
      bi = ImageIO.read(f); 
      ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
      ImageIO.write(bi, "jpg", baos); 
      byte[] bytes = baos.toByteArray(); 
        
      return encoder.encodeBuffer(bytes).trim(); 
    } catch (IOException e) { 
      e.printStackTrace(); 
    
    return null
  
    
  static void base64StringToImage(String base64String){ 
    try
      byte[] bytes1 = decoder.decodeBuffer(base64String); 
        
      ByteArrayInputStream bais = new ByteArrayInputStream(bytes1); 
      BufferedImage bi1 =ImageIO.read(bais); 
      File w2 = new File("c://QQ.bmp");//可以是jpg,png,gif格式 
      ImageIO.write(bi1, "jpg", w2);//不管输出什么格式图片,此处不需改动 
    } catch (IOException e) { 
      e.printStackTrace(); 
    
  
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.sina.com.cn/s/blog_65b630910100z7fv.html

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部