Hello,
I create text with shade:
1) convert -size 200x200 -background yellow -fill red label:Hello C:\text.png
2) convert C:\text.png -shade 135x30 C:\s_text.png
3) composite C:\text.png C:\s_text.png -compose Overlay C:\sh_text.png
and all works fine, but if I use
3) convert C:\text.png C:\s_text.png -compose Overlay -composite C:\sh_text.png
I received another result.
What is the problem as I understand
"composite C:\text.png C:\s_text.png -compose Overlay C:\sh_text.png" and "convert C:\text.png C:\s_text.png -compose Overlay -composite C:\sh_text.png" should be equal. Or I am wrong?
I use ImageMagick 6.3.2 Q16.
Bug or not?
-
- Posts: 1015
- Joined: 2005-03-21T21:16:57-07:00
Re: Bug or not?
convert requires the filename arguments in the reverse order. Try:
Pete
Code: Select all
convert C:\s_text.png C:\text.png -compose Overlay -composite C:\sh_text.png