如何确定位图的透明度颜色
I know you can programmatically determine the tranparency color of a .gif
Is there a way to do the same for a Bitmap?
Right now, I am doing this heuristically by sampling around the outer edge but of course this is not 100% reliable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不认为 BMP 文件格式支持透明度的概念。我的理解是,如果 BMP 图像与透明度一起使用,则它使用应用程序定义的颜色,例如 RGB(255,0,255) 来指定透明区域。
I don't believe the BMP file format supports the concept of transparency. My understanding is that if BMP images are used with transparency, it's using an application-defined colour, like RGB(255,0,255) to specify transparent areas.
您可以做的是:
What you may do is: