我想将PDF转换为SVG请建议一些库/可执行文件,将能够有效地做到这一点。 我已经写了使用Apache PDFBox的和蜡染库自己的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个不同的文本块。 有没有办法解决上面的代码? 或请提出另一个解决方案,更有效地工作。