Rust CLI to recursively convert a directory of DDS files to other image formats.
- ffmpeg must be installed and in your
path
. - texconv must be installed and in your
path
. - Run
dds-to-img.exe
on a directory of*.dds
files
dds-to-img <directory> [{png|webp}]
Example:
dds-to-img textures/ui webp
The directory structure will be maintained and output to a new sibling folder named <directory>_<image format>
directory
(required): Folder to look for*.dds
files in.{png|webp}
(optional): Image format to convert to. Defaults topng
.