Input Image + Text Overall is Outputing two image files
Posted: 2009-07-21T00:56:32-07:00
I need some help with this command as it's creating two images on output, but really all that's required is to overall the text on the original image.
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
This command created two images: {OutputImage-0.jpg, OutputImage-1.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.
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.