Yanıtlar:
Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();
image.getDrawable()
için gerçekten atılabilir olup olmadığını kontrol etmek için dikkatli olun . Örneğin, görüntünüzde katmanlar kullanıyorsanız, bu snippet biraz farklı olacaktır:BitmapDrawable
IllegalCastExceptions
Bitmap bitmap = ((BitmapDrawable)((LayerDrawable)image.getDrawable()).getDrawable(0)).getBitmap();
ImageView
ayarlanırsa bu nasıl çalışır URI
? imageView.setImageUri()
Bu sizi bir Bitmap
alacak ImageView
. Yine de, ayarladığınız aynı bitmap nesnesi değildir. Yeni bir tane.
imageView.buildDrawingCache();
Bitmap bitmap = imageView.getDrawingCache();
=== DÜZENLE ===
imageView.setDrawingCacheEnabled(true);
imageView.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
imageView.layout(0, 0,
imageView.getMeasuredWidth(), imageView.getMeasuredHeight());
imageView.buildDrawingCache(true);
Bitmap bitmap = Bitmap.createBitmap(imageView.getDrawingCache());
imageView.setDrawingCacheEnabled(false);
Bitmap bmap = Bitmap.createBitmap(mImageView.getDrawingCache());
Aşağıdaki kodu yazın
ImageView yourImageView = (ImageView) findViewById(R.id.yourImageView);
Bitmap bitmap = ((BitmapDrawable)yourImageView.getDrawable()).getBitmap();
Aradığınız olanlar için Kotlin
almak için solüsyon Bitmap
dan ImageView
.
var bitmap = (image.drawable as BitmapDrawable).bitmap
Bu kod daha iyi.
public static byte[] getByteArrayFromImageView(ImageView imageView)
{
BitmapDrawable bitmapDrawable = ((BitmapDrawable) imageView.getDrawable());
Bitmap bitmap;
if(bitmapDrawable==null){
imageView.buildDrawingCache();
bitmap = imageView.getDrawingCache();
imageView.buildDrawingCache(false);
}else
{
bitmap = bitmapDrawable .getBitmap();
}
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
return stream.toByteArray();
}
Bitmap imagenAndroid = BitmapFactory.decodeResource(getResources(),R.drawable.jellybean_statue);
Bir görüntünün bitmap'ini almanın diğer yolu bunu yapmaktır:
Bitmap imagenAndroid = BitmapFactory.decodeResource(getResources(),R.drawable.jellybean_statue);
imageView.setImageBitmap(imagenAndroid);
bu kodu deneyin:
Bitmap bitmap;
bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();