[Solved] Color modification of multiple images
Posted: 2012-07-06T17:21:01-07:00
Dear Forums,
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:
I am trying to color the letter files via the "+level-colors" parameter. Unfortunately, everything is in one single color, although each line has a different RGB value. If I'm testing with "-level-colors" it has a neon look, but every letter has a different color.
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?
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?