第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

Android圓角矩形創(chuàng)建工具RoundRect類

標簽:
Android

图片描述
用于把普通图片转换为圆角图像的工具类RoundRect类(复制即可使用):

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffXfermode;
import android.graphics.RectF;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;

public class RoundRect {

    private int width;
    private int height;
    private float cornerRadius;

    /**
     * 用于初始化圆角矩形基本参数
     *
     * @param width        图片宽度
     * @param height       图片高度
     * @param cornerRadius 圆角半径
     */

    public RoundRect(int width, int height, float cornerRadius) {
        this.width = width;
        this.height = height;
        this.cornerRadius = cornerRadius;
    }

    /**
     * 用于把普通图片转换为圆角矩形图像
     *
     * @param imageID 图片资源ID
     * @param context 上下文对象
     * @return output 转换后的圆角矩形图像
     */

    Bitmap toRoundRect(Context context, int imageID) {

        //创建位图对象
        Bitmap photo = BitmapFactory.decodeResource(context.getResources(), imageID);

        //根据源文件新建一个darwable对象
        Drawable imageDrawable = new BitmapDrawable(photo);

        // 新建一个新的输出图片
        Bitmap output = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(output);

        // 新建一个矩形
        RectF outerRect = new RectF(0, 0, width, height);

        // 产生一个红色的圆角矩形
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setColor(Color.RED);
        canvas.drawRoundRect(outerRect, cornerRadius, cornerRadius, paint);

        // 将源图片绘制到这个圆角矩形上
        paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
        imageDrawable.setBounds(0, 0, width, height);
        canvas.saveLayer(outerRect, paint, Canvas.ALL_SAVE_FLAG);
        imageDrawable.draw(canvas);
        canvas.restore();

        return output;
    }

}

在MainActivity中的使用示例:

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.image);

        ImageView image = (ImageView)findViewById(R.id.image);
        RoundRect roundRect = new RoundRect(500,500,300);
        Bitmap photo = roundRect.toRoundRect(this,R.drawable.indark);
        image.setImageBitmap(photo);
    }
}

效果展示:
用圆角矩形工具创建一个圆形头像

點擊查看更多內(nèi)容
9人點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優(yōu)惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消