BitmapFactory Hatası
05.01.2017 - 11:33
Arkadaşlar kodlar ve hata aşağıdadır bilen varsa yardımcı olursa sevinirim
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), R.drawable.image);
ByteArrayOutputStream ByteStream=new ByteArrayOutputStream();
bitmapOrg.compress(Bitmap.CompressFormat.PNG,100, ByteStream);
byte [] b=ByteStream.toByteArray();
String temp=Base64.encodeToString(b, Base64.DEFAULT);
Hata Mesajı;
BitmapFactory
Unable to decode stream: java.io.FileNotFoundException: : open failed: ENOENT (No such file or directory)
13
Görüntülenme
0 Beğeni