Xlib ZPixmap 格式是什么格式

发布于 2024-09-04 02:49:32 字数 75 浏览 3 评论 0原文

有谁知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2024-09-11 02:49:32

像素图没有颜色,就这样。它们只是像素值的数组。 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]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文