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
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
Copyright © 2021 Jogjafile Inc.
It looks like you found a missing feature in ImageMagick. This is now only supported:
convert file.png -define dds:compression=none out.ddsBut the following should work:
convert file.png -compress none out.ddsI just pushed a patch to the ImageMagick repository to add support for the
-compressoption that will be available in the next release.