Hi!
I want to save the Backbuffer as an JPG or PNG to Disk, but
the D3DX10SaveTextureToFile() function allways says this:
"D3DX10: Can't find matching WIC format, please save this file to a DDS"
What is a "WIC format"? And how can I save to an JPG or PNG? DDS is NOT good. :(
D3DX10SaveTextureToFile
Started by WuTz, Feb 28 2010 06:17 AM
2 replies to this topic
Sponsor:
#2 Moderators - Reputation: 5643
Posted 28 February 2010 - 08:48 AM
"WIC" stands for "Windows Imaging Component", and it's what D3DX uses for loading and saving images. It sounds like your problem is that the DXGI format of your backbuffer doesn't match any of the formats required for WIC. You probably need to give it something in DXGI_FORMAT_B8G8R8A8_UNORM or DXGI_FORMAT_B8G8R8X8_UNORM, since I think that's the byte order WIC will use.






