mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
cardconv updated.
png images converted from gifs by IM resulted in an indexed png format. This lead to Problems with tranparency, especially with ganijfa and hanafuda cardsets. To circumvent these problems IM had to be advised to produce 32 bit mode rgba format. affects android apk build process only.
This commit is contained in:
parent
5b75c1b413
commit
18febbe240
1 changed files with 9 additions and 3 deletions
|
@ -34,9 +34,15 @@ convdir() {
|
|||
mkdir -p "$2"
|
||||
|
||||
# Convert all images
|
||||
for i in $1/*.$ifo; do
|
||||
convert "$i" "$2/$(basename $i .$ifo).$ofo"
|
||||
done
|
||||
if [ $ofo == 'png' ]; then
|
||||
for i in $1/*.$ifo; do
|
||||
convert "$i" "-matte" "-quality" "95" "png32:$2/$(basename $i .$ifo).$ofo"
|
||||
done
|
||||
else
|
||||
for i in $1/*.$ifo; do
|
||||
convert "$i" "$2/$(basename $i .$ifo).$ofo"
|
||||
done
|
||||
fi
|
||||
|
||||
# Convert config.txt
|
||||
if [ -f $1/config.txt ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue