0

我在 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

4

1 回答 1

0
Imagemagick requires you to install ghostscript.

It's required by ImageMagick to interpret Postscript and PDF.

现在它可以在任何系统上正常工作。

于 2012-07-25T12:37:14.863 回答