如何在 python 中将 .dds 文件转换为 .png?

How can I convert a .dds file to a .png in python?

我正在尝试通过处理存储在 .dds 文件中的图像片段来创建一些图像,然后将完成的图像写为 .png。我看到 Direct Python 11 中有一个 dds python 模块,除了它保存为 .dds 格式外,这似乎足够了。有没有办法保存为另一种图像格式?

Python Imaging Library 有一个 open() 方法,支持 dds 个文件并具有读取功能,save() 可以将图像保存为多种格式(png包括)。

请注意,目前仅支持 DXT1、DXT3 和 DXT5 像素格式,并且仅支持 RGBA 模式。

Python Imaging Library link is not awailable, I will show actual solution with wand 图书馆:

from wand import image
with image.Image(filename="white_rect_dxt3.dds") as img:
    img.compression = "no"
    img.save(filename="white_rect_dxt3.png")

.png.dds

也一样
from wand import image
with image.Image(filename='white_rect.png') as img:
    img.compression = "dxt3"
    img.save(filename='white_rect_dxt3.dds')