码迷,mamicode.com
首页 > 其他好文 > 详细

Bitmap上下合成图片

时间:2018-03-28 12:29:59      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:led   stat   getheight   底部   copy   pos   map   getwidth   log   

合成两张图片,上下叠加的效果:

/**
     * 把两个位图覆盖合成为一个位图,以底层位图的长宽为基准
     *
     * @param backBitmap  在底部的位图
     * @param frontBitmap 盖在上面的位图
     * @return
     */
    public static Bitmap mergeBitmap(Bitmap backBitmap, Bitmap frontBitmap) {

        if (backBitmap == null || backBitmap.isRecycled()
                || frontBitmap == null || frontBitmap.isRecycled()) {
            return null;
        }
        Bitmap bitmap = backBitmap.copy(Bitmap.Config.ARGB_8888, true);
        Canvas canvas = new Canvas(bitmap);
        Rect baseRect = new Rect(0, 0, backBitmap.getWidth(), backBitmap.getHeight());
        Rect frontRect = new Rect(0, 0, frontBitmap.getWidth(), frontBitmap.getHeight());
        canvas.drawBitmap(frontBitmap, frontRect, baseRect, null);
        return bitmap;
    }

 

Bitmap上下合成图片

标签:led   stat   getheight   底部   copy   pos   map   getwidth   log   

原文地址:https://www.cnblogs.com/tangZH/p/8662655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!