SVG图片无法在pdf中正确呈现

时间:2018-12-05 11:50:52

标签: java itext7

[output image]

1 [this is the output i get[![And the expected output is like this image] 2] 3

这是我的代码,使用itext 7.1.3和SVGConventer在pdf中添加svg图像。图像无法正确渲染,我无法理解问题出在哪里以及什么问题?谁能帮我。预先感谢。

PdfWriter writer = new PdfWriter(new FileOutputStream("/home/users/Documents/pdf/new.pdf"));
PdfDocument pdfDoc = new PdfDocument(writer);
Document doc = new Document(pdfDoc);
URL svgUrl = new File(svg).toURI().toURL();
doc.add(new Paragraph("new pikachu"));                      
Image image = SvgConverter.convertToImage(svgUrl.openStream(), pdfDoc);                 
doc.add(image);
doc.close();

0 个答案:

没有答案