I have just started using imagemagick as I need to create very simple png's which contain text (certain font/size/colour - possibly bold/italic/underlined if the font supports it) on a transparent background.
I have tried doing this but when I lay out the PNG on to a coloured background, it just doesn't look very sharp due to the curves around the "e" and "o".
Code: Select all
convert -density 90 -pointsize 72 -font Gill-Sans-MT -fill black -stroke black -transparent white -colorspace CMYK label:Hello test.png
Can anybody see where I am going wrong?
Thanks in advance!