I have the following ImageMagick code to make a custom banner. Im slowly dialing it in, however I can't seen to work out the text position. Im not sure if my -annotate +150+200 is even the correct approach here. This is the test page. The text needs to be vertically centered and moved to the right so that its in the teal section. https://drunkrobots.net/test_img_all.php
exec("convert https://drunkrobots.net/dr_img/3.png -resize 600x600 -gravity west -background teal -extent 1800x600 -pointsize 130 -fill 'white' -annotate +150+200 'This is test text' output.jpg");

