Code: Select all
convert -size 3000x300 -depth 1 canvas:white -gravity east -stroke none -fill black -pointsize 200 -annotate 0 "TEST STRING" withtext.tif
Code: Select all
convert -size 3000x300 -depth 1 canvas:white justcanvas.tif
Code: Select all
convert justcanvas.tif -gravity east -stroke none -fill black -pointsize 200 -annotate 0 "TEST STRING" annotated.tif
I'm assuming it has to do with the bit depth, because if I omit the "-depth 1" from those same commands, it works fine. I'm sure I'm missing something obvious, but I just can't see what it is! These annotations are going to be merged with gigantic 1-bit TIFF images eventually so I need this to work in 1-bit.
Thanks for any help you can give!
-Brian