I am trying to create text by adding letter by letter after one another. Each letter is contained in a separate file.
Building words works, but I have problems coloring each single letter.
So for writing "AB" my imgmagick code looks similar to this:
Code: Select all
convert -gravity West -size 173x270 xc:none \
65-1.png -geometry +10+0 +level-colors 'rgb(240,24,105)' -composite \
66-2.png -geometry +99+0 +level-colors 'rgb(51,240,24)' -composite \
renders/output.png
I already RTFM, but apparently did not understand correctly. Please help me.
What am I doing wrong? Is there maybe another operation to achieve the effect I want?