Android:如何使位图边框透明?
我有一个位图,我只想显示中心圆区域。如何隐藏角落区域?实际上,如果我可以使任何区域透明(例如使其成为一个环),那就太好了?
I have a bitmap and I just want to show central circle area. How to hide the corner area? Actually, it would be great if I could make any area transparent (e.g. make it a ring)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将位图转换为透明 PNG - 您可以使用免费的 Gimp 应用程序。在 Gimp 中加载图片,选择中心圆圈区域,复制,然后粘贴为新图像。应自动使其周围的区域透明。然后只需另存为 PNG 文件并在 Android 应用程序中使用它即可。
更新
这是我找到的将颜色定义为透明的答案:Android位图遮罩颜色、去除颜色
Convert the bitmap to a transparent PNG - you can use the free Gimp application. Load your picture in Gimp, select the central circle area, copy, then paste as new image. Should automatically make the area around it transparent. Then just save as a PNG file and use that in your Android app.
UPDATE
Here's an answer I found for defining a color to be transparent: Android bitmap mask color, remove color