我在命令行中使用 ImageMagick convert.exe(重新调整图像大小)。它工作得很好。但是如果我在 C# 中做同样的事情,那么它就行不通了。它没有显示任何错误,所有行都运行良好。StanderdErrorOutput
也是空的。任何想法?这是我的代码。
var myProcess = new Process();
myProcess.StartInfo.FileName = @"C:\Users\user\Desktop\ImageMagick-6.8.6-Q16\convert.exe";
myProcess.StartInfo.Arguments = @"icon.png -resize 64x64 icon1.png";
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();
myProcess.WaitForExit();
Console.Read();