当我尝试将.EPS文件添加到我的文档中时,我看到了这个错误。
有没有人能帮我解决这个问题
Apache-FOP setup : SEVERE: Image not available. URI: ../graphics/icon-note.eps (application/postscript).
Reason: org.apache.xmlgraphics.image.loader.ImageException: Cannot load image (no suitable loader/converter combination available) for ../graphics/icon-note.eps (application/postscript) (No context info available)
org.apache.xmlgraphics.image.loader.ImageException: Cannot load image (no suitable loader/converter combination available) for ../graphics/icon-note.eps (application/postscript)
Apache-FOP是否支持.EPS文件??
发布于 2019-10-25 02:39:28
请参阅Apache FOP支持网站。https://xmlgraphics.apache.org/fop/2.3/graphics.html
我要指出的是,我不相信在PDF输出中曾经支持EPS。与许多格式化程序一样,EPS只能在Postscript输出中使用。作为图像的PDF通常在PDF输出中可用。一些格式化程序允许在PDF中使用EPS,只要EPS中嵌入了关联的TIFF (其中使用了TIFF图像,所以这与使用TIFF图像没有什么不同)。
您的解决方案是使用工具将EPS图像转换为PDF输出或输出Postscript支持的其他内容,并使用产品将Postscript转换为PDF。
https://stackoverflow.com/questions/58521317
复制相似问题