pdf转svg java_将pdf转换成svg

在Java中使用Apache PDFBox和Batik库将PDF转换为SVG,虽然转换成功,但生成的SVG文件体积过大。原因是每个字符被单独处理成文本块,导致文件膨胀。寻求优化代码或替代方案以减小SVG文件大小。
摘要由CSDN通过智能技术生成

我想将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个不同的文本块。 有没有办法解决以上代码? 或者,请提出另一种更有效的解决方案。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值