I hope you don't mind this huge breaks in my replies but i only have time on the weekends to work on this.
My convert call looks like this:
Code: Select all
convert -delay 7.05882352941176
\( 001.png -font "Indie-Flower" -pointsize 10 -fill "rgba(255,255,255,0.560)" -stroke none -annotate +22.5+40.221875 "test" -modulate 100,90,100 -sharpen 0x1 -brightness-contrast 0x0 \)
\( 002.png -font "Indie-Flower" -pointsize 10 -fill "rgba(255,255,255,0.560)" -stroke none -annotate +22.5+40.221875 "test" -modulate 100,90,100 -sharpen 0x1 -brightness-contrast 0x0 \)
\( 003.png -font "Indie-Flower" -pointsize 10 -fill "rgba(255,255,255,0.560)" -stroke none -annotate +22.5+40.221875 "test" -modulate 100,90,100 -sharpen 0x1 -brightness-contrast 0x0 \)
-enhance -dispose Previous -coalesce -layers OptimizePlus -loop 0 +dither -colors 512 test.gif
but i noticed, no matter where input: "-modulate 100,90,100 -sharpen 0x1 -brightness-contrast 0x0" they are always applied to the text as well. I tried before the image name, after the image name and like above.
But this also happens when i call it like this:
Code: Select all
convert -modulate 100,90,100 -sharpen 0x1 -brightness-contrast -40x0 -fuzz 0 -delay 11.7647058823529 -enhance -dispose Previous -coalesce -layers OptimizePlus -loop 0 +dither \( -font 'Indie-Flower' -pointsize 10 -fill 'rgba(255,255,255,0.560)' -stroke none -annotate +22.5+40.221875 'test' \) *.png test.gif
So it's probably not related to the sub converts.
Also, the "-color" option does not seem to work like expected. For some reasons when adding "-colors 512" the gif gets slightly bigger.
But when i try it without the sub converts the option makes the gif smaller, so i guess something is wrong.
Last thing i noticed. The gif is a little bigger when i use the sub convert.
Greetings,
Andy