Add tools/convert_all_tga_to_png.bash

This commit is contained in:
kay27 2022-03-04 02:08:52 +04:00
parent 54c06f3fe8
commit a887708fb5
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/bash
for name in ./*.tga
do
convert "$name" "${name%.*}".png
# Slow and useless:
# optipng -o7 -zm1-9 "${name%.*}".png
done