web-dev-qa-db-ja.com

SDカードから画像ファイルをビットマップに読み込むと、なぜNullPointerExceptionが発生しますか?

SDカードから画像ファイルをビットマップに読み込むにはどうすればよいですか?

 _path = Environment.getExternalStorageDirectory().getAbsolutePath();  

System.out.println("pathhhhhhhhhhhhhhhhhhhh1111111112222222 " + _path);  
_path= _path + "/" + "flower2.jpg";  
System.out.println("pathhhhhhhhhhhhhhhhhhhh111111111 " + _path);  
Bitmap bitmap = BitmapFactory.decodeFile(_path, options );  

ビットマップのNullPointerExceptionを取得しています。ビットマップがヌルであることを意味します。しかし、「flower2.jpg」としてsdcardに保存されている画像「.jpg」ファイルがあります。どうしたの?

102
Smitha

MediaStore APIはおそらくアルファチャネルを破棄しています(つまり、RGB565へのデコード)。ファイルパスがある場合は、BitmapFactoryを直接使用しますが、アルファを保持する形式を使用するように指示します。

BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap bitmap = BitmapFactory.decodeFile(photoPath, options);
selected_photo.setImageBitmap(bitmap);

または

http://mihaifonoage.blogspot.com/2009/09/displaying-images-from-sd-card-in.html

256

このコードを試してください:

Bitmap bitmap = null;
File f = new File(_path);
BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
try {
    bitmap = BitmapFactory.decodeStream(new FileInputStream(f), null, options);
} catch (FileNotFoundException e) {
    e.printStackTrace();
}         
image.setImageBitmap(bitmap);
25
Jitendra

できます:

Bitmap bitmap = BitmapFactory.decodeFile(filePath);
25
Ahmad Arslan

次のコードを記述して、sdcardからBase64でエンコードされた文字列に画像を変換し、JSONオブジェクトとして送信します。

String filepath = "/sdcard/temp.png";
File imagefile = new File(filepath);
FileInputStream fis = null;
try {
    fis = new FileInputStream(imagefile);
    } catch (FileNotFoundException e) {
    e.printStackTrace();
}

Bitmap bm = BitmapFactory.decodeStream(fis);
ByteArrayOutputStream baos = new ByteArrayOutputStream();  
bm.compress(Bitmap.CompressFormat.JPEG, 100 , baos);    
byte[] b = baos.toByteArray(); 
encImage = Base64.encodeToString(b, Base64.DEFAULT);
5
Priyank Desai