package com.ipanel.chenqk.util;
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;
/**
* 圖片與二進(jìn)制之間的相互轉(zhuǎn)換
* @author chenqk
* 2014年6月9日09:50:13
*/
public class TranserImageUtil {
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());
}
/**
* 將圖片轉(zhuǎn)換為二進(jìn)制
* @return
*/
static String getImageBinary(){
File f = new File("f://image/beauty.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;
}
/**
* 將二進(jìn)制轉(zhuǎn)換為圖片
* @param base64String 二進(jìn)制數(shù)據(jù)
*/
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("f://test/beauty.jpg");//可以是jpg,png,gif格式
ImageIO.write(bi1, "jpg", w2);//不管輸出什么格式圖片,此處不需改動(dòng)
} catch (IOException e) {
e.printStackTrace();
}
}
}
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請
點(diǎn)擊舉報(bào)。