How to dirty a font
Re: How to dirty a font
Thanks. I hadn't seen that, my bad.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to dirty a font
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
see
http://www.imagemagick.org/Usage/canvas/#solid
Re: How to dirty a font
Nice. I added "xc:white", and it worked. Maybe the script at http://www.imagemagick.org/Usage/fonts/#dirty_print could be changed accordingly.
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: How to dirty a font
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...
Upload make take a little time to get though web caching
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
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: How to dirty a font
Thanks a bunch, Anthony!