string arguments = string.Format(@"-density 300 {0}.pdf {1}.png", intputFileName, outputFileName"); var startInfo = new ProcessStartInfo { Arguments = arguments, Filename = @"C:\path\to\imagick\convert.exe" }; Process.Start(startInfo).WaitForExit();
Literature:
jgauffin
source share