I am new to Magick.net but I am trying to make a file generator. I have had it work fine from within the Linux command line, but I need to make a .net app for use by others that don't have access to linux, or the web.
Doing something like:
Any advice is greatly appreciated.
Doing something like:
montage -background none -fill black -font Helvetica-Condensed-Light -pointsize 26 label:'Foobar Controller 3.1.4.0 Installer' +set label -shadow -geometry +5+5 test_v3.png
Is what I would like to have (those dimensions as well) within the using (MagickImage image = new MagickImage(new MagickColor("#000000"), 419, 39))
{
new Drawables()
// Draw text on the image
but I am rather confused in how I can accomplish this.Any advice is greatly appreciated.