当我在Windows中打开一个命令窗口并使用ImageMagick的convert命令:
转化/some/Garden.jpg /somedir/Garden.png
它按预期运作。
我试图做的是使用C#来执行上文提到的指挥。
我使用系统进行了审判。 诊断。 然而,没有产生疏漏。
我正在使用这一法典:
var proc = new Process
{
StartInfo =
{
Arguments = string.Format("{0}Garden.jpg {1}Garden.png",
TEST_FILE_DIR,
TEST_FILE_DIR),
FileName = @"C:xamppImageMagick-6.5.4-Q16convert",
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardOutput = false,
RedirectStandardError = false
}
};
proc.Start();
没有任何例外被推翻,但没有写上字。