android 边框圆角,android 圆角图标 和不规则圆角(边框)

android 圆角图标 和不规则圆角(边框)

e5d560e17045

1.png

需要求就是如图 所示

将 原图 变成 圆角 或者不规则的形状,应为桌面主题需要用到。

当然 方法很多 这边提供如下方法。

// 圓角

private Bitmap getRoundedCornerBitmap(Bitmap bitmap) {

Bitmap roundBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888);

Canvas canvas = new Canvas(roundBitmap);

int color = 0xff424242;

Paint paint = new Paint();

Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());

RectF rectF = new RectF(rect);

float roundPx = 50;

paint.setAntiAlias(true);

canvas.drawARGB(0, 0, 0, 0);

paint.setColor(color);

canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));

canvas.drawBitmap(bitmap, rect, rect, paint);

return roundBitmap;

}

// 不规则角

private Bitmap getRoundedCornerBitmap(Bitmap bitmap, Bitmap bg) {

Paint paint = new Paint();

float scaleX = (float) (bitmap.getWidth() * 1.0 / bg.getWidth()) + 0.1f;

float scaleY = (float) (bitmap.getHeight() * 1.0 / bg.getHeight()) + 0.1f;

Bitmap scaleBitmap = scaleBitmap(bg, scaleX, scaleY);

Bitmap roundBitmap = Bitmap.createBitmap(scaleBitmap.getWidth(), scaleBitmap.getHeight(), Config.ARGB_8888);

Canvas canvas = new Canvas(roundBitmap);

paint.setAntiAlias(true);

canvas.drawBitmap(scaleBitmap, 0, 0, paint);

paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));

canvas.drawBitmap(bitmap, scaleBitmap.getWidth() / 2 - bitmap.getWidth() / 2, scaleBitmap.getHeight() / 2

- bitmap.getHeight() / 2, paint);

return roundBitmap;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值