舍入ImageView角的方法会产生不同的结果

时间:2013-08-08 16:32:00

标签: android bitmap

我有一个ImageView,我想让ImageView的角落圆润。我找到了以下方法来实现这个效果:

public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int pixels) {
    Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(output);

    final int color = 0xff424242;
    final Paint paint = new Paint();
    final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
    final RectF rectF = new RectF(rect);
    final float roundPx = pixels;

    paint.setAntiAlias(true);
    canvas.drawARGB(0, 0, 0, 0);
    paint.setColor(color);
    canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

    paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
    canvas.drawBitmap(bitmap, rect, rect, paint);

    return output;
}

这个方法工作正常,我传入一个Bitmap,指定半径,并且出来的Bitmap具有适当剪裁和舍入的角。

对于用法,我有一项活动,用户可以拍摄照片或从图库中选择一张照片,或者如果他没有拍照,则会选择默认照片。所以我有以下代码:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
        case Constants.TAKE_PHOTO:
            if (resultCode == RESULT_OK) {
                mPhoto = (Bitmap) data.getExtras().get("data");
                Bitmap croppedImage = bitmapMethods.cropImage(mPhoto);
                finalPhoto = bitmapMethods.getRoundedCornerBitmap(croppedImage, 30);
                imageView.setImageBitmap(finalPhoto);
            }
            break;
        case Constants.CHOOSE_PHOTO:
            if (resultCode == RESULT_OK) {
                Uri selectedImage = data.getData();
                mPhoto = bitmapMethods.decodeFile(selectedImage, mContext);
                Bitmap croppedImage = bitmapMethods.cropImage(mPhoto);
                finalPhoto = bitmapMethods.getRoundedCornerBitmap(croppedImage, 30);
                imageView.setImageBitmap(finalPhoto);
            }
            break;
    }
}

这里bitmapMethods.cropImage()是一种保证图像长度和宽度相同的方法。现在奇怪的是,如果我用相机拍摄照片case Constants.TAKE_PHOTO,角落非常圆,几乎是圆形图像出来。如果默认照片或所选照片通过相同的方法传递,则图像会根据需要出现略微圆角。

我的问题是为什么?我将相同的int pixels传递给每个方法(在上面的30个方法中),那么为什么拍摄的照片会以圆圈形式出现,而选择的照片则会显示为带有圆角的矩形?

1 个答案:

答案 0 :(得分:0)

“数据”给出了捕获图像的缩略图。与存储在图库中的500万像素相比,这将非常小。因此,200px x 200px缩略图上的30px圆角会使其看起来像一个圆圈,而在1024px x 768px图像上会让它感觉像圆角矩形。

您可以尝试http://developer.android.com/guide/topics/media/camera.html#intent-image来存储更大的图像并阅读它们。