围绕位图创建矩形
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我没听懂你的问题......
标题是“围绕位图绘制矩形”,但没有对矩形进行详细描述。
如果你想要一个矩形,那么可以按如下方式完成...
绘制位图参考其他答案...
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....
Drawing bitmap refer other answers...
创建一个新的 20x30 位图,创建一个 Canvas 来保存该位图,然后将 10x15 的位图添加到 Canvas.drawBitmap() 中。
Create a new
Bitmap
that's 20x30, create aCanvas
to hold that bitmap, and thenCanvas.drawBitmap()
your 10x15 one into it.使用此方法创建第一个位图:
给出高度和宽度以及正确的 x 和 y 值。
Create first bitmap with this method:
Give your height and width and proper x and y values.