1
0
mirror of https://github.com/mt-mods/signs_lib.git synced 2025-06-29 22:31:04 +02:00

Fix out-of-bounds in 'combine' texture modifier

Co-authored-by: tenplus1 <tenplus1@users.noreply.github.com>
This commit is contained in:
Niklp
2024-02-26 16:14:54 +01:00
parent e387808065
commit 1fdff47dc8
626 changed files with 36 additions and 26 deletions

10
util/convert.sh Executable file
View File

@ -0,0 +1,10 @@
# inverts signs_lib font to black on transparent background
img_path=./
#img_results=./converted
#mkdir -p $img_results
for img in ${img_path}/*;
do
# convert -negate $img ${img_results}/${img#./*};
convert $img -background white -alpha remove -alpha off -negate -transparent white $img
done