How to convert PNG to uncompressed DDS in Linux?

2.4k Views Asked by At

Based on wiki DDS could be compressed and uncompressed. Now I'm trying to figure out how to achive converting png to dds without compression.

Regular converting could be achived with
convert file.png out.dds

1

There are 1 best solutions below

1
dlemstra On BEST ANSWER

It looks like you found a missing feature in ImageMagick. This is now only supported:

convert file.png -define dds:compression=none out.dds

But the following should work:

convert file.png -compress none out.dds

I just pushed a patch to the ImageMagick repository to add support for the -compress option that will be available in the next release.