diff --git a/README.md b/README.md index aa125af..bfe6898 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ ses images individuelles, et les convertir en un format de bitmap presque correc (aux bits inversés) avec la commande suivante : ```shell -convert -resize 84x48 -coalesce .gif -threshold 50% %02d.mono +convert .gif -coalesce -resize 84x48 -threshold 50% %02d.mono ``` Il peut être nécessaire d'inverser les bits comme mentionné plus haut et je n'ai diff --git a/Utils/convertAnimGif.sh b/Utils/convertAnimGif.sh index d8d33d1..de2ec14 100755 --- a/Utils/convertAnimGif.sh +++ b/Utils/convertAnimGif.sh @@ -40,7 +40,7 @@ for gifToConvert in "$@"; do mkdir "$animDir" pushd "$animDir" - convert -resize 84x48 -coalesce ../"$gifToConvert" -threshold 50% %02d.mono + convert ../"$gifToConvert" -coalesce -resize 84x48 -threshold 50% %02d.mono "$bmp_help" ./*.mono # Clean up and remove the extension rm -f ./*.mono