- transparent PNG, 1920x1080, text at bottom
- text is automatically fit to image width, using 'label' and 'interword-spacing'
- text is offset from border, using 'bordercolor transparent' and 'border'
- text has stroke
- text also needs to have shadow (blur, drop shadow, doesn't really matter which one)
But, every time I try to add this shadow, I end up with completely white image or loss of transparency
Also, I want to create image using one single command line.
I use ImageMagick-7.0.1-Q16.
Command line is like this:
Code: Select all
convert.exe -size 1890x1050 xc:none -font Arial -size 1890x -fill rgb(255,255,255) -stroke #0d0707 -background transparent -gravity South -interword-spacing 500 label:"www.google.com (555)123-4567" -bordercolor transparent -border 15x15 -composite +repage -depth 8 output.png
What am I doing wrong ?