a monochrome bitmap is terrible.
Commands I have been using (with variations):
Code: Select all
convert -background black -fill white -size x30 -density 192 label:"Text" sample.png
Code: Select all
convert -background black -fill white -size x30 -density 192 -monochrome label:"Text" sample_mono.png
I don't want to convert a grayscale image to monochrome, but instruct imagemagick to render the text directly in black/white. Looking at some freetype examples, that should give a good quality. But how to do that with imagemagick?