With ImageMagick 7, replace convert with magick. Also replace composite with magick composite.
So for IM 6:
convert
-gravity center
-background transparent
-fill white
-font ArialB
-pointsize 24 label:"Testing1"
-pointsize 24 label:"Testing2"
-append
-resize 200%
tmpText.png
# build a background image with a radial gradient
convert
-gravity center
-size 500x500 radial-gradient:"rgb(0,50,255)"-"rgb(0,0,127)"
tmpBase.png
# combine the two
composite
-gravity center
tmpText.png tmpBase.png fred_test6.png
I get:
And for IM 7
magick
-gravity center
-background transparent
-fill white
-font ArialB
-pointsize 24 label:"Testing1"
-pointsize 24 label:"Testing2"
-append
-resize 200%
tmpText.png
# build a background image with a radial gradient
magick
-gravity center
-size 500x500 radial-gradient:"rgb(0,50,255)"-"rgb(0,0,127)"
tmpBase.png
# combine the two
magick composite
-gravity center
tmpText.png tmpBase.png fred_test7.png
I get:
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…