我正在尝试使用C#中的Magick.NET实现一项功能。
以前我用过: -
// 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);
我想不再需要在服务器上存储convert.exe .....现在我想使用代码中的东西并且不需要在服务器上引用可执行文件: -
// Pseudo-code:-
MagickImage img = new MagicImage();
Image.Add(svg);
Image.Format = MagickFormat.png;
Image.Scale = 60%;
但我找不到足够的文档来实现我之前使用的相同功能。有适当文件的地方吗?我搜索了很多,没有成功。