QWidget 中的 SDL_Surface
我想在 Qt 窗口内使用 SDL_Surface
。 我使用 SDL_CreateRGBSurface()
创建了一个 SDL_Surface
。 我知道如何在 Qt 窗口中显示 QPixmap
。 现在我只需要将 SDL_Surface
转换为 QPixmap
。 有人有什么想法吗?
I want to use a SDL_Surface
inside a Qt window.
I created a SDL_Surface
using SDL_CreateRGBSurface()
.
I know how to display a QPixmap
in Qt window.
Now I only need to convert my SDL_Surface
into QPixmap
.
Anyone has any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有解决这个特定问题,但我的猜测是,您必须使用相应的函数将数据从
SDL_Surface
加载到QPixmap
中。您可以使用 loadFromData 尝试一下。当然,您必须声明正确的像素格式。该信息可以从表面检索。I have not yet worked on this particular problem, but my guess is, that you have to load the data from the
SDL_Surface
into theQPixmap
with the according function. You could try it with loadFromData. Of course, you have to declare the correct pixel format. This information can be retrieved from the surface.您可能对标题为“从非窗口手动复制”的 SDL 常见问题条目感兴趣SDL_Surface 到 GUI 工具包”。
You might be interested in the SDL FAQ entry titled "Manually copy from non-window SDL_Surface to the GUI toolkit".