我將JPG圖像上傳爲byte [],但是在轉換爲byte []之前EXIF的Bitmap條帶。如何上傳原始jpg而不將其轉換爲位圖?Android:上傳JPG圖像而不會丟失EXIF
File imagefile = new File(filepath + "DSC00021.jpg");
FileInputStream fis = new FileInputStream(imagefile);
Bitmap bi = BitmapFactory.decodeStream(fis); // EXIF info lost
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.JPG, 100, baos);
byte[] data = baos.toByteArray();
p.s.我不想使用任何第三方庫。 ExifInterface只能寫入文件而不能寫入流/字節數組。
爲什麼不把整個文件內容從FileInputStream讀到字節數組而不是轉換成Bitmap對象?谷歌搜索會給你噸結果如何獲得一個文件的內容到一個字節數組。 – 2011-12-20 05:17:25