我在 C# 中创建了一个 Web 应用程序,以便通过命令行converting PDF to JPG
使用。ImageMagick
这在本地工作正常,但是当我将它上传到服务器上时它不起作用。
public string appPath = "C:\\Program Files\\ImageMagick-6.5.3-Q16";
Process myProcess = new Process();
myProcess.StartInfo.FileName = appPath + @"\convert";
myProcess.StartInfo.Arguments = (@"-type truecolor -quality " + tbQuality.Text + " -colorspace " + cbColourSpace.SelectedValue.ToString().ToLower() + " -density " + tbDPI.Text + @" " + currentFile + resizeString + @" " + outputFile);
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();
myProcess.WaitForExit();
这成功运行,没有任何异常,但没有生成任何JPG