-
Notifications
You must be signed in to change notification settings - Fork 1
/
convert_dds_to_png_r.py
44 lines (38 loc) · 1.21 KB
/
convert_dds_to_png_r.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import argparse
import glob
from locale import getdefaultlocale
from os.path import isdir
from os.path import join as path_join
from subprocess import Popen, PIPE
from app.utils.io import print_process
CONSOLE_ENCODING = getdefaultlocale()[1]
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="convert dds files to png recursively")
parser.add_argument(
"-d",
"--dir_path",
help="directory path to convert",
required=True,
)
parser.add_argument(
"-i",
"--imagemagick_convert_path",
help="ImageMagick convert path",
required=True,
)
args = parser.parse_args()
all_files = glob.glob(path_join(args.dir_path, "**", "*"), recursive=True)
for file in all_files:
if isdir(file):
continue
with open(file, "rb") as f:
magic_code = f.read(3)
if magic_code != b"DDS":
continue
print(f"[-] Converting {file} to png")
process = Popen(
f"{args.imagemagick_convert_path} dds:{file} {file}.png",
stdout=PIPE,
stderr=PIPE,
)
print_process(process, CONSOLE_ENCODING)