我曾为iText PDF文档进行SVG图像渲染。 为此,我使用了SVGSalamander将SVG转换为图像格式。 它可以正常工作,但是它具有一个奇怪的行为,即某些SVG图像在某些情况下不能正确渲染。那些错误渲染的svg与实际图像不一致。 我试过了,但我不知道为什么它仅在某些图像上发生。
非常感谢有人帮助我解决此问题。
Java代码:
private static Image createSVGImage(PdfWriter pdfWriter, String imageEntry) throws BadElementException {
Image image = null;
Graphics2D g2dgraphics =null;
PdfTemplate template = null;
try{
SVGDiagram diagram = SVGCache.getSVGUniverse().getDiagram( new java.io.File( imageEntry ).toURI() );
template = pdfWriter.getDirectContent().createTemplate( diagram.getWidth(), diagram.getHeight());
diagram.setIgnoringClipHeuristic(true);
g2dgraphics= new PdfGraphics2D(template, diagram.getWidth(), diagram.getHeight());
diagram.render(g2dgraphics);
}catch( Exception e ){
e.printStackTrace();
} finally {
if( g2dgraphics != null ){
g2dgraphics.dispose();
image = Image.getInstance(template);
}
g2dgraphics.dispose();
}
return image;
}
未对齐的SVG xml代码
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="M19,16a46,46 0,1,0 62,0l-8,8a34,34 0,1,1-46,0z" fill="#069"/>
<path d="M46,43v35a28,28 0,0,1-14-49zM54,43v35a28,28 0,0,0 14-49z" fill="#396"/>
<circle r="15" cx="50" cy="18" fill="#900"/>
</svg>
真实图像
从上面的代码输出图像
答案 0 :(得分:0)
我真的不知道为什么这个库会发生这种情况,因为没有答案,我已经将SVGSalamendar更改为蜡染库,如果有人需要,这是它的有效代码
Maven依赖项
//Remove:
this.surveyForm.get('answers').removeControl('answer');
反映与上述结果相同的Java代码:
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svggen</artifactId>
<version>1.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/batik/batik-transcoder -->
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.11</version>
</dependency>
<!-- https://mvnrepository.com/artifact/batik/batik-rasterizer -->
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-rasterizer</artifactId>
<version>1.11</version>
</dependency>