圆角曲线矩形位图

时间:2016-12-09 10:51:20

标签: java android bitmap

我正在尝试添加圆形白色曲线边框,但不太可能无法在位图中渲染。

这是我到目前为止所做的。

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.WHITE);
    canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

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

    return output;
}

使用此代码渲染的圆角位图。

enter image description here

我真正想要达到的目标应该是白色边框位图图像。

enter image description here

任何帮助或建议都非常感谢。如果有人向我指出我出错的地方会很棒。

2 个答案:

答案 0 :(得分:0)

<ImageView
                            android:id="@+id/crediticon"
                            android:layout_width="24dp"
                            android:layout_height="24dp"
                            android:layout_alignParentRight="true"
                            android:src="@drawable/sbi"
android:background = "@drawable/roundedcornergrey"

 />

roundedcornergrey

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <stroke android:color="#e0e0e0" android:width="0.5dp"/>
    <corners android:radius="2dp"/>
    <solid android:color="#ffffff"/>

</shape>

答案 1 :(得分:0)

// draw border
paint.setColor(Color.WHITE);
paint.setStyle(Paint.Style.STROKE); 
paint.setStrokeWidth((float) border); 
canvas.drawRoundRect(rectF, corner, corner, paint);

为位图图像添加了笔划,并给出了修正该问题的角点像素。