0

我在命令行中使用 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();
4

3 回答 3

0

尝试运行 Convert 时,我在 Mac 上遇到了类似的问题,即使使用另一张海报建议的 ReadToEnd() 也是如此。

我发现通过添加

-调试“全部”

选项导致它工作。

我不知道为什么!

于 2014-10-30T00:09:59.620 回答
0

我通过创建一个临时批处理文件找到了解决方案,

    static void Main(string[] args)
    {
        var guid = Guid.NewGuid().ToString();
        var root = AppDomain.CurrentDomain.BaseDirectory;
        var batchFilePath = root + guid + ".bat";
        var cmd = @"cd C:\Users\user\Desktop\ImageMagick-6.8.6-Q16" + Environment.NewLine
                    + "convert icon.png -resize 64x64 icon1.png";
        CreateBatchFile(cmd, batchFilePath);// Temporary Batch file
        RunBatchFile(batchFilePath);
        DeleteBatchFile(batchFilePath);
    }

    private static void RunBatchFile(string batFilePath)
    {
        var myProcess = new Process();
        myProcess.StartInfo.FileName = batFilePath;
        myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
        myProcess.StartInfo.CreateNoWindow = true;
        myProcess.Start();
        myProcess.WaitForExit();
    }

    private static void DeleteBatchFile(string file)
    {
        File.Delete(file);
    }

    private static void CreateBatchFile(string input, string filePath)
    {
        FileStream fs = new FileStream(filePath, FileMode.Create);
        StreamWriter writer = new StreamWriter(fs);
        writer.WriteLine(input);
        writer.Close();
        fs.Close();
    }
于 2013-06-17T10:00:14.867 回答
0

这是我用来运行进程的,除了调用 StandardError.ReadToEnd()

        // create process start info
        ProcessStartInfo startInfo = new ProcessStartInfo(fileName, arguments);
        startInfo.UseShellExecute = false;
        startInfo.CreateNoWindow = true;
        startInfo.RedirectStandardOutput = true;
        startInfo.RedirectStandardError = true;

        // run the process
        using (Process proc = System.Diagnostics.Process.Start(startInfo))
        {

            // This needs to be before WaitForExit() to prevent deadlocks, for details: 
            // http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardoutput%28v=VS.80%29.aspx
            proc.StandardError.ReadToEnd();

            // Wait for exit
            proc.WaitForExit();

        }
于 2013-06-17T08:59:52.130 回答