First expand the image canvas vertically with a white background
From there it should then put the specified text in every corner
however my code isn't working and probably has errors all over it, Im using windows command prompt to run it with a batch file
here is my code:
Code: Select all
cd "C:\Users\Gregg\Desktop\imagemagick portable\ImageMagick-6.7.3-1"
mogrify.exe -background white -extent 110% -gravity center C:\Users\Gregg\Desktop\testimages\* \
mogrify.exe -gravity SouthWest -draw "text 10,10 'Sales@alltest.net'" \
mogrify.exe -gravity NorthWest-draw "text 10,10 'Alltest Instruments'" \
mogrify.exe -gravity SouthEast -draw "text 10,10 '(123) 456-7890'" \
mogrify.exe -gravity NorthEast -draw "text 10,10 'Express Test'"
pause