Code1System.Diagnostics.ProcessStartInfo p = new System.Diagnostics.ProcessStartInfo("convert.exe", "rgz.bmp out.jpg");2p.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;3System.Diagnostics.Process.Start(p); 调用的是ImageMagick命令行工具。只是在此标记一下,方便日后查看。 转载于:https://www.cnblogs.com/fangfan4060/archive/2009/03/09/1407128.html