0

正常情况下,我可以使用下面的代码来获取图像的宽度,但它需要API级别16。 如何在android:minSdkVersion="8" 时获取图像的高度和宽度

Cursor cur = mycontext.getContentResolver().query(
                MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null,
                MediaStore.Images.Media._ID + "=?", new String[] { id }, "");
string width=cur.getString(cur.getColumnIndex(MediaStore.Images.Media.HEIGHT));
4

1 回答 1

7

将仅解码边界的选项传递给工厂:

BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;

//Returns null, sizes are in the options variable
BitmapFactory.decodeFile("/sdcard/image.png", options);
int width = options.outWidth;
int height = options.outHeight;
//If you want, the MIME type will also be decoded (if possible)
String type = options.outMimeType;

或者

ImageView您可以通过使用getWidth()和通过获得高度和宽度,getHeight()虽然这不会为您提供图像的确切宽度和高度,为了获得图像宽度高度首先您需要将可绘制对象作为背景,然后将可绘制对象转换为BitmapDrawable` 以获得图像作为位图,您可以像这里一样获得宽度和高度

Bitmap b = ((BitmapDrawble)imageView.getBackground()).getBitmap();
int w = b.getWidth();
int h = b.getHeight();

或者这样做

imageView.setDrawingCacheEnabled(true);
Bitmap b = imageView.getDrawingCache();
int w = b.getWidth();
int h = b.getHeight();

上面的代码会给你当前Imageview大小的位图,比如设备的屏幕截图

ImageView尺寸

imageView.getWidth();
imageView.getHeight();

如果你有可绘制的图像并且你想要那个尺寸,你可以像这样得到

Drawable d = getResources().getDrawable(R.drawable.yourimage);
int h = d.getIntrinsicHeight();
int w = d.getIntrinsicWidth();
于 2013-07-25T14:46:26.277 回答