回答:
Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();
image.getDrawable()
実際にキャストできるかどうかを確認するように注意してくださいBitmapDrawable
(を回避するためIllegalCastExceptions
)。例えば、あなたがあなたのイメージにレイヤーを使用する場合は、このスニペットは若干異なります:Bitmap bitmap = ((BitmapDrawable)((LayerDrawable)image.getDrawable()).getDrawable(0)).getBitmap();
ImageView
が設定されている場合、これは機能しURI
ますか?imageView.setImageUri()
これにより、Bitmap
から取得できますImageView
。ただし、設定したビットマップオブジェクトとは異なります。新品です。
imageView.buildDrawingCache();
Bitmap bitmap = imageView.getDrawingCache();
===編集===
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());
コードの下に書く
ImageView yourImageView = (ImageView) findViewById(R.id.yourImageView);
Bitmap bitmap = ((BitmapDrawable)yourImageView.getDrawable()).getBitmap();
探している人のためにKotlin
取得するためのソリューションBitmap
からImageView
。
var bitmap = (image.drawable as BitmapDrawable).bitmap
このコードの方が優れています。
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);
画像のビットマップを取得する別の方法はこれを行うことです:
Bitmap imagenAndroid = BitmapFactory.decodeResource(getResources(),R.drawable.jellybean_statue);
imageView.setImageBitmap(imagenAndroid);
このコードを試してください:
Bitmap bitmap;
bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();