QWidget 中的 SDL_Surface

发布于 2024-12-09 19:03:21 字数 226 浏览 0 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(2

左岸枫 2024-12-16 19:03:21

我还没有解决这个特定问题,但我的猜测是,您必须使用相应的函数将数据从 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 the QPixmap 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.

高跟鞋的旋律 2024-12-16 19:03:21

您可能对标题为“从非窗口手动复制”的 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".

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