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 (without the size I prefer though), but I need to make a .net app for use by others that don't have access to Linux, or the web (so using PHP not in question, at least not yet).
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
But unsure how to use montage
from within the C# .net wrapper.
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. The documentation seems confusing since I am not doing something "standard", as the output will be previewed in an image panel with the option of saving to the file system.