如何将 .dds 文件加载到图片框中?

发布于 2024-07-21 02:52:12 字数 82 浏览 7 评论 0原文

如何在 C# 中将 .dds 纹理文件加载为图像? 我在谷歌上找不到任何有用的东西。

你给我的信息和样本越多,我就越能理解它。

How do I load .dds texture files as an Image in C#? There's nothing useful on google that I could find.

The more information with samples you give me,the better it will be for me to understand it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

闻呓 2024-07-28 02:52:12

我遇到过同样的问题。 这是一个很好的解决方案。

  1. 来源:http://www.mastropaolo.com/devildotnet/
  2. 从该链接下载版本 1.3 (页面底部)
  3. 添加 Devil.NET.dll 作为对您的应用程序的引用
  4. 使用我在下面提供的代码。

    PictureBox1.Image = DevIL.DevIL.LoadBitmap(DDS_File_Path)

就是这么简单。 我们欠 DevIL .NET Wrapper 创建者一杯啤酒。

I had the same issue. Here is a good solution.

  1. Source: http://www.mastropaolo.com/devildotnet/
  2. Download Version 1.3 from that link (bottom of page)
  3. Add the Devil.NET.dll as a reference to your application
  4. Use the code that I have supplied below.

    PictureBox1.Image = DevIL.DevIL.LoadBitmap(DDS_File_Path)

It's really that easy. We owe the DevIL .NET Wrapper creator a beer.

少女的英雄梦 2024-07-28 02:52:12

我认为简短的回答是你不知道。 文档说支持的格式是BMP, GIF、EXIG、JPG、PNG 和 TIFF。

更新:似乎可以通过 Google 找到许多转换器,这可能会帮助你。 另外,正如 Wayne 建议的那样,看看 XNA(如果您还没有)。 Texture2D.FromFile 方法似乎可以处理 .dds 文件,但是我自己从未使用过它,所以我不能说它是否是您正在寻找的......

I think the short answer is that you don't. The documentation says that the supported formats are BMP, GIF, EXIG, JPG, PNG and TIFF.

Update: there seem to be a number of converters to be found through Google, that might help you out. Also, as Wayne suggests, look at XNA (if you didn't already). The Texture2D.FromFile method seems to handle the .dds files, but I never used it myself so I can't say if it is what you are looking for or not...

若能看破又如何 2024-07-28 02:52:12

您可能想看看 Microsoft 的 XNA Game Studio SDK将纹理加载到内存中,并可能以 System.Drawing.Graphics 可用的方式捕获图像。

You might want to take a look at the Microsoft's XNA Game Studio SDK to load the textures in memory and possibly capture the images in a System.Drawing.Graphics usable way.

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