将图像数据保存成文本格式(字符串)

    技术2022-05-12  18

    以下函数是将图片数据(包括jpg、png)转换成字符串格式,使得图象数据可以存在文本文件中,但这种方法要牺牲的存储空间比较大,1.3K的图片转换后会变成7.8K,后来发现有更好的算法,他就是Base64算法,同样可以达到存储在文本中的目的,但文件就小好多,大概1.7K左右,不到原文件的两倍。

     public static String byteToString(byte b) {  byte high, low;  byte maskHigh = (byte) 0xf0;  byte maskLow = 0x0f;

      high = (byte) ((b & maskHigh) >> 4);  low = (byte) (b & maskLow);

      StringBuffer buf = new StringBuffer();  buf.append(findHex(high));  buf.append(findHex(low));

      return buf.toString(); }

     private static char findHex(byte b) {  int t = new Byte(b).byteValue();  t = t < 0 ? t + 16 : t;

      if ((0 <= t) && (t <= 9)) {   return (char) (t + '0');  }

      return (char) (t - 10 + 'A'); }

     public byte[] stringToByte(String s) {

      byte imageData[] = new byte[s.length() / 2];

      int j = 0;  for (int i = 0; i < s.length(); i += 2) {   try {

        imageData[j] = (byte) Integer.parseInt(s.substring(i, i + 2),      16);    j++;   } catch (NumberFormatException e) {

       }  }

      return imageData;

     } 


    最新回复(0)