Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基于wiki DDS 可以被压缩和解压缩。现在我试图弄清楚如何在png不dds压缩的情况下实现转换。
png
dds
可以通过以下方式实现定期转换 convert file.png out.dds
convert file.png out.dds
看起来您在 ImageMagick 中发现了一个缺失的功能。现在仅支持:
convert file.png -define dds:compression=none out.dds
但以下应该有效:
convert file.png -compress none out.dds
我刚刚向 ImageMagick 存储库推送了一个补丁,以添加对-compress将在下一个版本中提供的选项的支持。
-compress