Hi!
I'm new to c# and .NET (not to ImageMagick!) and MagickNET seems great!
However, I get this MagickConfigureWarnigException when running the example below:
Regards / Jonas
I'm new to c# and .NET (not to ImageMagick!) and MagickNET seems great!
However, I get this MagickConfigureWarnigException when running the example below:
Magick2.vshost.exe: UnableToOpenConfigureFile `type.xml' @ warning/configure.c/GetConfigureOptions/616
What to do about that?Regards / Jonas
MagickNET.Initialize();
var image = new MagickImage(@"I:\test.png");
image.Annotate("Hello baby", Gravity.Center); // <-- This causes the exception
image.Write(@"I:\testAnnotation.png");