如何在JasperReport中将svg字节数组显示为图像?
我有一个另存为的图像byte[]
,我想在JasperReport中将其显示为图像。我尝试从Java方法获取数据:
public InputStream getImage(){ return new ByteArrayInputStream(getImageByteArray());
}
和
public Image getImage() throws IOException{ return ImageIO.read(new ByteArrayInputStream(getImageByteArray()));
}
和
public String getImage(){ return new String((new org.apache.commons.codec.binary.Base64()).encode(getImageByteArray()));
}
但它们似乎都没有起作用。
jrxml看起来像这样:
<image hAlign="Center" vAlign="Middle" isUsingCache="true" isLazy="true"> <reportElement positionType="Float" x="0" y="0" width="164" height="32" isRemoveLineWhenBlank="true" isPrintWhenDetailOverflows="true" uuid="c63c84a8-41c7-4ca3-8451-751d43fa8a9e"/>
<imageExpression><![CDATA[$P{paramObject}.getImage()]]></imageExpression>
</image>
我尝试的某些事情会出现异常,有些会打印JasperReport,但是应该在其中显示图像的区域为空白。我知道图像数据在那里,因为我可以在JSF页面中显示它。图像数据是SVG数据。
回答:
假设你的图像字节编码为base64,则可以使用以下代码
<image> <reportElement/>
<imageExpression>
<![CDATA[javax.imageio.ImageIO.read(new java.io.ByteArrayInputStream(new sun.misc.BASE64Decoder().decodeBuffer("/9j/4AAQ .... "))) ]]>
</imageExpression>
</image>
以上是 如何在JasperReport中将svg字节数组显示为图像? 的全部内容, 来源链接: utcz.com/qa/407498.html