我想将PDF转换为SVG,请建议一些能够有效执行此操作的库/可执行文件。 我已经使用apache PDFBox和Batik库编写了自己的Java程序-
PDDocument document = PDDocument.load( pdfFile );
DOMImplementation domImpl =
GenericDOMImplementation.getDOMImplementation();
// Create an instance of org.w3c.dom.Document.
String svgNS = "http://www.w3.org/2000/svg";
Document svgDocument = domImpl.createDocument(svgNS, "svg", null);
SVGGeneratorContext ctx = SVGGeneratorContext.createDefault(svgDocument);
ctx.setEmbeddedFontsOn(true);
// Ask the test to render into the SVG Graphics2D implementation.
for(int i = 0 ; i < document.getNumberOfPages() ; i++){
String svgFName = svgDir+"page"+i+".svg";
(new File(svgFName)).createNewFile();
// Create an instance of the SVG Generator.
SVGGraphics2D svgGenerator = new SVGGraphics2D(ctx,false);
Printable page = document.getPrintable(i);
page.print(svgGenerator, document.getPageFormat(i), i);
svgGenerator.stream(svgFName);
}
此解决方案效果很好,但生成的svg文件的大小非常大。(比pdf大很多倍)。 我通过在文本编辑器中查看svg找出了问题所在。 即使字符的字体属性相同,它也会将原始文档中的每个字符括在自己的块中。 例如,单词hello将显示为6个不同的文本块。 有没有办法解决以上代码? 或者,请提出另一种更有效的解决方案。