What it's meant to do
1. Resize InputImage.jpg to 229x172
2. Overall Text in the top center and wrap to multiple lines if required.
3. Output to a signle image to use on web
Code: Select all
convert InputImage.jpg -resize 229x172 -gravity north -fill blue -font arialbd.ttf -pointsize 18 -strokewidth 1.5 -compress jpeg -quality 65 -size 229x172 "caption:This is just some random text to test the wraping" OutputImage.jpg
0 is the Input Image resized
1 is the text
Is there an option I need to be using??? I'm new to ImageMagick, had all this working in PHP but GoDaddy only supports the 'convert' utility.