How is it not working? What results do you get? You can post to some place such as dropbox.com and put the URL here?
I would break it up. start with one argument and test, then add another argument and test, and so on. Find where it breaks.
Note, that -quality 100 should come properly at the end before your output, though in IM 6, it probably does not matter.
Please always provide your IM version and platform, since syntax differs and if an old version, there may be bugs.
Everything works fine for me without the gravity center and then with the gravity center using IM 6.9.5.4 Q16 Mac OSX. Note you did not specify a pointsize.
Code: Select all
convert -size 250x250 xc:white -font arial -pointsize 21 -fill "black" -pointsize 36 -draw "gravity North translate 0,0 skewX 0 skewY 0 rotate 0 scale 2,2 text 0,0 'Hello'" -quality 100 result2.jpg
In the above, the text is at the top center and is twice as large as without the scale
Code: Select all
convert -size 250x250 xc:white -font arial -pointsize 21 -fill "black" -pointsize 36 -draw "gravity North translate 0,0 skewX 0 skewY 0 rotate 0 gravity center scale 2,2 text 0,0 'Hello'" -quality 100 result3.jpg
In the above the text is in the center and is twice as large as without the scale.
Is this not what you expect. If not, what are you expecting?