围绕位图创建矩形

发布于 2024-10-14 17:02:08 字数 79 浏览 2 评论 0原文

我有一个 10*15 大小的位图,现在我想从这个现有的位图创建一个大小为 20*30 的位图,但增加的区域应该是透明的,位图不应该被平移/缩放。

I have an bitmap of 10*15 size now i want to create an bitmap from this existing bitmap with size 20*30 but the increased area should be transparent ,bitmap should not be translated/scaled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

各空 2024-10-21 17:02:08
Bitmap b = Bitmap.createBitmap(
    yourBitmap,
    xMarginYouWant,
    yMarginYouWant,
    yourBitmap.getWidth() + xMarginYouWant * 2,
    yourBitmap.getHeight() + yMarginYouWant * 2
);
Bitmap b = Bitmap.createBitmap(
    yourBitmap,
    xMarginYouWant,
    yMarginYouWant,
    yourBitmap.getWidth() + xMarginYouWant * 2,
    yourBitmap.getHeight() + yMarginYouWant * 2
);
一笔一画续写前缘 2024-10-21 17:02:08

我没听懂你的问题......
标题是“围绕位图绘制矩形”,但没有对矩形进行详细描述。
如果你想要一个矩形,那么可以按如下方式完成...

RectF rect = new RectF(x,y,x+width,y+height);  
canvas.drawRect(rect, paint);  

绘制位图参考其他答案...

I did not get your question....
The heading is "drawing rectangle around bitmap" but there is no description for rectangle in detail.
If you want a rectangle then this can be done as follows....

RectF rect = new RectF(x,y,x+width,y+height);  
canvas.drawRect(rect, paint);  

Drawing bitmap refer other answers...

呆头 2024-10-21 17:02:08

创建一个新的 20x30 位图,创建一个 Canvas 来保存该位图,然后将 10x15 的位图添加到 Canvas.drawBitmap() 中。

Create a new Bitmap that's 20x30, create a Canvas to hold that bitmap, and then Canvas.drawBitmap() your 10x15 one into it.

寻找我们的幸福 2024-10-21 17:02:08

使用此方法创建第一个位图:

Bitmap b=b.createBitmap (Bitmap source, int x, int y, int width, int height);

给出高度和宽度以及正确的 x 和 y 值。

Create first bitmap with this method:

Bitmap b=b.createBitmap (Bitmap source, int x, int y, int width, int height);

Give your height and width and proper x and y values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文