我正在尝试将“矩形”位图转换为带有边框的圆形位图。我写了这段代码:

using Android.Graphics;
namespace MyNamespace
{
 public static class BitmapExtension
 {
    public static Bitmap GetCircularBitmap(this Bitmap bitmap)
    {
        Bitmap result = Bitmap.CreateBitmap(bitmap.Width, bitmap.Height, Bitmap.Config.Argb8888);
        Canvas canvas = new Canvas(result);

        Paint paint = new Paint();
        Rect rect = new Rect(0, 0, bitmap.Width, bitmap.Height);

        paint.AntiAlias = true;
        canvas.DrawARGB(0, 0, 0, 0);
        paint.Color = Color.Black;
        canvas.DrawCircle(bitmap.Width / 2, bitmap.Height / 2, bitmap.Width / 2, paint);
        paint.SetXfermode(new PorterDuffXfermode(PorterDuff.Mode.SrcIn));
        canvas.DrawBitmap(bitmap, rect, rect, paint);

        // Border
        paint.SetStyle(Paint.Style.Stroke);
        paint.StrokeWidth = 2;
        paint.AntiAlias = true;

        canvas.DrawCircle(
                canvas.Width / 2,
                canvas.Width / 2,
                canvas.Width / 2 - 2 / 2,
                paint);

        // Release pixels on original bitmap.
        bitmap.Recycle();

        return result;
    }
 }
}


到目前为止,它的效果很好,因为此代码有时在RecyclerView中使用,但有时绘制不正确:

java - 什么是将位图转换为圆形位图的最佳方法-LMLPHP

如您所见,图像绘制的位置略有偏移。所以我有两个问题:


是什么原因导致这种奇怪的行为发生?
有没有办法改善我的GetCircularBitmap方法?由于性能很重要,因此必须非常快。


更新:解决方案

我使用FFImageLoadingCircle Transformation来显示图像。它还大大提高了性能,并为图像缓存提供了良好的实践。

最佳答案

最简单的方法是使用CircleImageView
首先将此添加到您的gradle文件中:
dependencies { ... implementation 'de.hdodenhof:circleimageview:2.2.0'}
在您的XML布局中:

<de.hdodenhof.circleimageview.CircleImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/image"
android:layout_width="24"
android:layout_height="24"
android:src="@drawable/image"/>

并在Java代码中像使用任何其他ImageView一样使用它。

10-05 22:52
查看更多