Xlib ZPixmap 格式是什么格式
有谁知道 32/24 位图像/像素图的 XLib ZPixmap 格式是什么。是 RGB(A) 或 BGR(A) 等还是高度依赖于实现?
does anyone know what is XLib ZPixmap format for 32/24bit images/pixmaps. Is it RGB(A) or BGR(A), etc. or highly implementation dependent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像素图没有颜色,就这样。它们只是像素值的数组。 X 中唯一具有颜色解释的可绘制对象是 Windows(由视觉对象定义的通道)、图片(由图片格式定义的通道)和 GLX 可绘制对象(由 GLX 视觉对象或 fbconfig 定义的通道)。您想要在像素图上添加的任何“颜色”解释都是这些像素最终到达的位置(或者它们来自的位置)的函数。如果要将它们放入窗口中,请查看窗口的视觉效果以了解颜色通道蒙版是什么。
[编辑:添加 GLX 可绘制信息]
Pixmaps have no color, period. They're just arrays of pixel values. The only drawables in X that have a color interpretation are Windows (channels defined by Visuals), Pictures (channels defined by Picture Formats), and GLX drawables (channels defined by either a GLX visual or an fbconfig). Any "color" interpretation you want to put on a pixmap is a function of where those pixels are going to end up (or, where they came from). If you're going to put them into a Window, look at the Visual of the Window to discover what the color channel masks are.
[edit: added GLX drawable info]