We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this questionI am looking for a conversion library that can convert my dds files to tga. I found imagemagick and DevIL. But both come with problems, because my specifications are as follows:
- The library needs to be a 64-bit dll
- The library needs to be managed (writing in C#)
DevIL has a wrapper called DevIL.NET, but this is 32-bits. I already tried to build the source in 64-bit, but I was missing a file and the author doesn't seem to respond at the moment.
ImageMagick doesn't seem to support dds formats.
Does anybody know a good library that complies to my requirements?
There is a way to do this but it's a bit painfull.
Humus provides C++ source code for both tga and dds reading and saving ( Download the latest framework ). You need to convert it to C# but this should be possible without any problems ( i did it once too ).
You'll find the code in the Imaging\Image.h
and Imaging\Image.cpp
.
Direct link to the Code( ZIP ).
精彩评论