Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 XNA.Texture2D 加载到 PictureBox。
我试过这个:http ://www.gamedev.net/community/forums/viewreply.asp?ID=3224621但它不起作用。有什么建议么?
您应该可以使用该方法,但请确保您的 XNA Texture2D 是使用 32bbpARGB 格式创建的。任何其他格式都将阻止该方法直接工作。
更简单的方法是使用Texture2D.SaveAsPng或将 Texture2D 保存Texture2D.SaveAsJpeg到内存流,然后使用Bitmap(Stream).
Texture2D.SaveAsPng
Texture2D.SaveAsJpeg
Bitmap(Stream)