透明位图
我在这里遇到位图问题..我想删除我的位图具有的黑色背景。
我正在从字节数组创建位图位图..然后在 BitMapField 中设置位图..但显示的图像具有黑色背景。
I am having problem here with bitmaps..I want to remove the black background that my bitmap is having.
I am creating bitmap bitmap from byte array..and then setting the bitmap in BitMapField..but the image shown has a black background.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能发布一些代码吗?如果没有一些特定的代码,我们无法真正帮助您。
如果还没有,您应该使用
createAlpha
来自Bitmap
类。有关常见问题的进一步说明和帮助,请参阅 黑莓 支持 论坛。
Could you post some code? Without some specific code we can't really help you.
If you aren't yet, you should be using
createAlpha
from theBitmap
class.Further explanation and help for common problems can be found in the Blackberry Support Forum.
使用此构造函数创建位图 -
Bitmap(int type, int width, int height)
其中类型应为 Bitmap.ALPHA_BITDEPTH_8BPP
Use this constructor to create the Bitmap -
Bitmap(int type, int width, int height)
where type should be
Bitmap.ALPHA_BITDEPTH_8BPP