获取Bitmap附加到ImageView

时间:2011-11-29 06:09:12

标签: android imageview android-bitmap

鉴于

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

是否可以检索位图?

7 个答案:

答案 0 :(得分:789)

Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();

答案 1 :(得分:44)

这会从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);

答案 2 :(得分:1)

写下面的代码

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

答案 3 :(得分:0)

此代码更好。

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

答案 4 :(得分:0)

对于那些正在寻找Kotlin解决方案以从Bitmap获得ImageView的人。

var bitmap = (image.drawable as BitmapDrawable).bitmap

答案 5 :(得分:-2)

获取图像位图的其他方法是这样做:

Bitmap imagenAndroid = BitmapFactory.decodeResource(getResources(),R.drawable.jellybean_statue);
imageView.setImageBitmap(imagenAndroid);

答案 6 :(得分:-9)

试试这段代码:

UIStoryboard