如何将图像添加到位图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将图像添加到位图相关的知识,希望对你有一定的参考价值。
答案
Bitmap Rbitmap = Bitmap.createBitmap(bitmap).copy(Config.ARGB_4444, true);
Canvas canvas = new Canvas(Rbitmap);
canvas.drawBitmap(label, -9, Rbitmap.getHeight()-label.getHeight()-10, null);
canvas.save();
return Rbitmap;
让你的问题更加具体化将有助于你。如果我理解正确,这段代码将帮助你绘制一个绘制画布的位图。
另一答案
您可以更具体一点,即发布一些代码来展示您需要获得更具体的答案。无论如何,您可以使用以下内容在另一个位图上绘制位图:
//You will have a Bitmap bottomBmp, a Bitmap topBmp and a Canvas canvas.
//If you are inside an onDraw() method the canvas will be provided to you, otherwise you will have to create it yourself, use a mutable bitmap of the same size as the bottomBmp.
canvas.drawBitmap(bottomBmp, 0, 0, null); //Draw the bottom bitmap in the upper left corner of the canvas without any special paint effects.
canvas.drawBitmap(topBmp, 0, 0, null); //Draw the top bitmap over the bottom bitmap, change the zeroes to offset this bitmap.
以上是关于如何将图像添加到位图的主要内容,如果未能解决你的问题,请参考以下文章
onActivityResult 不会从 viewPager 片段调用