Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: Compound Font Effects

$
0
0
The -tile option sets the fill pattern. The command above translates to this:
using (MagickImage image = new MagickImage(MagickColors.LightBlue, 320, 100))
{
  image.Settings.Font = "Candice";
  image.Settings.FontPointsize = 72;
  image.Settings.FillPattern = new MagickImage("pattern:checkerboard");
  image.Annotate("Anthony", new MagickGeometry(28, 68));
  image.Write("font_tile.jpg");
}

Viewing all articles
Browse latest Browse all 3693

Trending Articles