Bir görüntü dosyasını sdcard'dan bitmap'e okurken, neden bir NullPointerException alıyorum?


105

Bir görüntü dosyasını sdcard'dan bit eşlem olarak nasıl okuyabilirim?

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

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

Bit eşlem için bir NullPointerException alıyorum. Bit eşlemin boş olduğu anlamına gelir. Ama sdcard'da "flower2.jpg" olarak saklanan bir ".jpg" dosyası var. Sorun ne?

Yanıtlar:


265

MediaStore API muhtemelen alfa kanalını çöpe atıyor (yani RGB565'e kod çözme). Bir dosya yolunuz varsa, doğrudan BitmapFactory'yi kullanın, ancak alfa'yı koruyan bir format kullanmasını söyleyin:

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

veya

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


3
selected_photoburada ne var
Autonomous

Selam! Albümlere kaydedilen görüntü 3840x2160 ancak bu yöntemle sunucuya yüklenen görüntü 1080x1920
Shajeel Afzal

@ ParagS.Chandakkar kodu çözülmüş dosyayı görüntüleyebileceğiniz bir ImageView olabilir.
PinoyCoder


28

Bu kodu deneyin:

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);

6

Bir görüntüyü JSON nesnesi olarak göndermek için sdcard'dan Base64 kodlu dizeye dönüştürmek için aşağıdaki kodu yazdım ve harika çalışıyor:

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);
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.