Java圖片轉換爲base64格式

將圖片文件轉化爲字節數組字符串,並對其進行Base64編碼處理

/**
 * @Descriptionmap 將圖片文件轉化爲字節數組字符串,並對其進行Base64編碼處理
 * @author temdy
 * @Date 2015-01-26
 * @param path 圖片路徑
 * @return
 */
public static String imageToBase64(String path) {// 將圖片文件轉化爲字節數組字符串,並對其進行Base64編碼處理
    byte[] data = null;
    // 讀取圖片字節數組
    try {
        InputStream in = new FileInputStream(path);
        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編碼過的字節數組字符串
}

/**
 * @Descriptionmap 對字節數組字符串進行Base64解碼並生成圖片
 * @author temdy
 * @Date 2015-01-26
 * @param base64 圖片Base64數據
 * @param path 圖片路徑
 * @return
 */
public static boolean base64ToImage(String base64, String path) {// 對字節數組字符串進行Base64解碼並生成圖片
    if (base64 == null){ // 圖像數據爲空
        return false;
    }
    BASE64Decoder decoder = new BASE64Decoder();
    try {
        // Base64解碼
        byte[] bytes = decoder.decodeBuffer(base64);
        for (int i = 0; i < bytes.length; ++i) {
            if (bytes[i] < 0) {// 調整異常數據
                bytes[i] += 256;
            }
        }
        // 生成jpeg圖片
        OutputStream out = new FileOutputStream(path);
        out.write(bytes);
        out.flush();
        out.close();
        return true;
    } catch (Exception e) {
        return false;
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章