web-dev-qa-db-ja.com

ImageViewに添付されたビットマップを取得します

与えられた

ImageView image = R.findViewById(R.id.imageView);
image.setImageBitmap(someBitmap);

ビットマップを取得することは可能ですか?

300
lemon
Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();
789
Arslan

これで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);
45
Sarwar Erfan

以下のコードを書く

ImageView yourImageView = (ImageView) findViewById(R.id.yourImageView);
Bitmap bitmap = ((BitmapDrawable)yourImageView.getDrawable()).getBitmap();
1
Pankaj Talaviya

このコードは優れています。

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();
    }
0
Ahmad Aghazadeh