使用ireport和oracle xe和apex显示图像

时间:2014-11-10 17:24:18

标签: image oracle ireport oracle-apex

我正在使用ireport 5.1构建我的报告,现在我正在尝试在我的pdf报告中显示图像,但它没有显示出来。

我将jpg文件复制到jasper目录,在那里我有我的ireport编译文件(jrxml), 我在报告中引用了jpg文件:

XML CODE:

        <image>
            <reportElement uuid="generated_uuid" x="2" y="4" width="119" height="50"/>
            <imageExpression><![CDATA["logovinhedo.jpg"]]></imageExpression>
        </image>

但它不起作用

1 个答案:

答案 0 :(得分:0)

请尝试以下代码段:

  1. 将完整图像路径存储在参数IMAGE_PATH
  2. 应用参数而不是图像文件名。
  3. <image>
        <reportElement x="2" y="4" width="119" height="50" />
        <imageExpression class="java.lang.String">!CDATA[$P{IMAGE_PATH}]]> </imageExpression>
    </image>