C#からconvert.exeトラフプロセスクラスを呼び出して、特定の画像を次のような別の形式に変換しようとしています。
File.WriteAllBytes(inputFilePath, Convert.FromBase64String(image.Content));
Elmah.ErrorLog.GetDefault(HttpContext.Current).Log(new Error(new Exception("Succesfully wrote the image to: " + inputFilePath)));
var proc = new Process();
proc.StartInfo.Arguments = string.Format("{0} {1}", inputFilePath, outputFilePath);
proc.StartInfo.FileName = @"c:\Program Files (x86)\ImageMagick-6.7.7-Q16\convert.exe";
proc.StartInfo.CreateNoWindow = false;
proc.StartInfo.UseShellExecute = false;
proc.Start();
proc.WaitForExit();
コマンドプロンプトを開いてすぐにシャットダウンする理由がわかりません...コードにエラーがありますか?convert.exeへのパスは確かに問題ありません...