获取附加到ImageView的位图

特定

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

是否有可能检索位图?

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

这将从ImageView获得一个Bitmap 。 虽然,它不是你设置的位图对象。 这是一个新的。

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

这个代码更好。

 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); imageView.setImageBitmap(imagenAndroid); 

试试这个代码:

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