Using Magick.NET with C#
问题 I am trying to implement a functionality using Magick.NET in C#. Previously I was using:- // Convert to a png. Process p = new Process(); p.StartInfo.FileName = @"C:\Program Files\ImageMagick-6.2.8-Q16\convert.exe"; p.StartInfo.Arguments = "-scale 60% \"" + svg + "\" \"" + png + "\""; p.StartInfo.CreateNoWindow = true; p.Start(); p.WaitForExit(); TransmitFile(context, png); I want to move away from having to store convert.exe on the server.....Now I want to use something that will be in code