我正在使用 Ghostscript.Net,版本 = 1.2.1.0,将 PDF 光栅化为图像。我在我的项目目录/bin 文件夹中引用了 ghostscript 的 32 位 gsdll32.dll 和 64 位 gsdll64.dll。我正在使用这段代码来获取ghostscript dll的路径:
var ghostScriptPath = Environment.Is64BitProcess ? HttpContext.Current.Server.MapPath("/bin/gsdll64.dll"):
HttpContext.Current.Server.MapPath("/bin/gsdll32.dll");
这在本地工作正常,我对 PDF 进行光栅化没有任何问题,但是在部署到服务器后,它会引发异常:
System.IO.FileNotFoundException:无法加载文件或程序集“Ghostscript.NET,版本=1.2.1.0,文化=中性,PublicKeyToken=f85051de34525b59”或其依赖项之一。该系统找不到指定的文件。文件名:'Ghostscript.NET,版本=1.2.1.0
关于如何解决这个问题的任何想法?