2

我需要将头像添加到网格项目。

我想知道如何处理从手机图库中选择的图像的大小调整。一旦选择,我想将需要一些调整大小,以适应网格。

但是,我是否需要为每个屏幕密度存储调整大小的图像?存储一个 xhdpi 版本并按比例缩小以供其他设备使用,或者以其他方式聪明?

原因是,应用程序将此图像存储到云数据库中,其他人可以下载此图像。他们可能会在不同的设备上看到图像(因此需要不同的图像尺寸)。这个图像的管理应该如何处理?

4

4 回答 4

4

做这样的事情:

 DisplayMetrics metrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(metrics);

    Bitmap bitmapOrg = new BitmapDrawable(getResources(), new  ByteArrayInputStream(imageThumbnail)).getBitmap();

    int width = bitmapOrg.getWidth();
    int height = bitmapOrg.getHeight();

    float scaleWidth = metrics.scaledDensity;
    float scaleHeight = metrics.scaledDensity;

    // create a matrix for the manipulation
    Matrix matrix = new Matrix();
    // resize the bit map
    matrix.postScale(scaleWidth, scaleHeight);

    // recreate the new Bitmap
    Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0, width, height, matrix, true);
于 2013-04-26T06:48:37.860 回答
2

我希望您发现下面的代码很有用。它将以最小的开销返回具有 reqd 尺寸的图像。我已经用过很多次了,就像魅力一样。您可以根据目标设备设置所需的尺寸。缩放会导致图片模糊,但这不会。

private Bitmap getBitmap(Uri uri) {                             
    InputStream in = null;
    try {
        final int IMAGE_MAX_SIZE = 200000; // 0.2MP
        in = my_context.getContentResolver().openInputStream(uri);

        // Decode image size
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;                    //request only the dimesion
        BitmapFactory.decodeStream(in, null, o);
        in.close();

        int scale = 1;
        while ((o.outWidth * o.outHeight) * (1 / Math.pow(scale, 2)) > IMAGE_MAX_SIZE) {
            scale++;
        }

        Bitmap b = null;
        in = my_context.getContentResolver().openInputStream(uri);
        if (scale > 1) {
            scale--;
            // scale to max possible inSampleSize that still yields an image
            // larger than target
            o = new BitmapFactory.Options();
            o.inSampleSize = scale;
            b = BitmapFactory.decodeStream(in, null, o);
            // resize to desired dimensions
            int height = b.getHeight();
            int width = b.getWidth();

            double y = Math.sqrt(IMAGE_MAX_SIZE
                    / (((double) width) / height));
            double x = (y / height) * width;

            Bitmap scaledBitmap = Bitmap.createScaledBitmap(b, (int) x, (int) y, true);
            b.recycle();
            b = scaledBitmap;
            System.gc();
        } else {
            b = BitmapFactory.decodeStream(in);
        }
        in.close();

        return b;
    } catch (IOException e) {

        return null;
    }

}
于 2012-12-01T13:13:02.040 回答
1
android:scaleType="fitXY"
android:layout_gravity="center"

将缩放图像并将其居中设置大小为填充父级的容器,它应该这样做。

于 2012-12-01T13:13:12.373 回答
0

您可以将图像放入可绘制对象(无需创建 xhdpi、hdpi、mdpi、ldpi...)(全局图像)。

然后,您可以为不同的屏幕尺寸创建 4 个相同的布局。您的所有布局都可以使用可绘制导向器中的图像。因此,您可以轻松调整图像大小。

于 2012-12-01T13:14:46.363 回答