我還沒有在任何地方找到此問題的答案。如何將位圖圖像轉換爲Uri
位圖圖像在應用程序中處理,這意味着沒有文件路徑來獲取圖像。
下面是如何將一個URI轉換爲位圖
if (requestCode == RC_PHOTO_PICKER && resultCode == RESULT_OK) {
Uri selectedImageUri = data.getData();
imageview.setImageURI(selectedImageUri);
try {
bitmap1 = MediaStore.Images.Media.getBitmap(this.getContentResolver(), selectedImageUri);
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(this, "" + e, Toast.LENGTH_SHORT).show();
}
bitmap1.compress(Bitmap.CompressFormat.JPEG, 7, bytearrayoutputstream);
BYTE = bytearrayoutputstream.toByteArray();
bitmap2 = BitmapFactory.decodeByteArray(BYTE, 0, BYTE.length);
imagetoo.setImageBitmap(bitmap2);
}
我現在該如何重新轉換到URI
可能重複[如何將位圖轉換爲Uri?](http://stackoverflow.com/questions/8295773/how-can-i-transform-a-bitmap-into-a-uri) –