Page 2 of 2

Re: How to dirty a font

Posted: 2017-11-09T09:48:44-07:00
by snibgo
"xc:lightblue" creates an image.

Re: How to dirty a font

Posted: 2017-11-09T09:50:13-07:00
by FrereTuck
Thanks. I hadn't seen that, my bad.

Re: How to dirty a font

Posted: 2017-11-09T11:09:12-07:00
by fmw42
xc: is the same as canvas: and is the command to create a new image of some color and size as specified by -size and x:"somecolor".

see
http://www.imagemagick.org/Usage/canvas/#solid

Re: How to dirty a font

Posted: 2017-11-09T11:20:13-07:00
by FrereTuck
Nice. I added "xc:white", and it worked. Maybe the script at http://www.imagemagick.org/Usage/fonts/#dirty_print could be changed accordingly.

Re: How to dirty a font

Posted: 2017-11-09T16:35:20-07:00
by anthony
opps my bad.. I removed the xc: from the example.. The lightblue did not matter because of the threshold so I removed some of the useless options and went a little too far.
Example is now...

Code: Select all

  convert -size 320x100 xc: \
          -font Candice -pointsize 72 -annotate +25+65 'Anthony' \
          -spread 1 -blur 0x1 -threshold 50% -blur 0x1 font_dirty_print.jpg
Upload make take a little time to get though web caching

Re: How to dirty a font

Posted: 2017-11-10T01:33:22-07:00
by FrereTuck
Thanks a bunch, Anthony!