我正在为Linux Server中的应用程序运行PostScript到PDF转换服务。我安装了ghostscript版本8.70。我正在使用gsdll64.dll和ghostscript 9.26在Windows中测试代码,并且工作正常。 我在pom文件中添加了jna 4.1.0和ghost4j 1.0.1依赖关系。
运行程序时,出现以下错误:
Caused by: org.ghost4j.GhostscriptException: Cannot initialize Ghostscript interpreter. Error code is -100
at org.ghost4j.Ghostscript.initialize(Ghostscript.java:365)
at org.ghost4j.converter.PDFConverter.run(PDFConverter.java:231)
我的代码如下:
InputStream iis = null;
ByteArrayOutputStream bos = null;
try {
//load the bytes data into the inputstream
iis = new ByteArrayInputStream(psBytes);
//create the byte array output stream
bos = new ByteArrayOutputStream();
//load PostScript bytes through input stream
PSDocument document = new PSDocument();
document.load(iis);
//create converter
PDFConverter converter = new PDFConverter();
//set options
converter.setPDFSettings(PDFConverter.OPTION_PDFSETTINGS_PREPRESS);
converter.convert(document, bos);
return bos.toByteArray();
}catch (org.ghost4j.document.DocumentException de){
String[] errArg = {de.getMessage()};
throw new ApplicationException(ErrorCode.XXXXX, errArg);
}
答案 0 :(得分:0)
因此,您不是在使用Ghostscript,而是在使用Ghost4j。您的第一步应该是从命令行初始化Ghostscript本身。只需执行“ gs”,看看会发生什么。
错误-100只是意味着“发生了致命的事情”,我对Ghost4j并不熟悉,但是大概有某种方法可以查看stdout和stderr发生了什么,在这些通道上发回了什么消息?
答案 1 :(得分:0)
我能够通过升级Ghostscript的版本来解决。当我安装高于9的Ghostscript版本时,它起作用了。