java.io.IOException: The byte array is not a recognized imageformat.
·
用 jasperreports 生成pdf文件时报出的这个错误,生成的pdf文件也是空白的。
try { image = Image.getInstance(renderer.getData(jasperReportsContext)); imageTesterPdfContentByte.addImage(image, 10, 0, 0, 10, 0, 0); } catch (Exception e) { throw new JRException(e); }
上面是源代码抛异常的地方,和网上搜索的资料IOException : logo.png is not a recognized imageformat (Open Source Projects forum at Coderanch)对比发现可能是图片转换出错,感觉是jrxml文件中图片的路径有问题。
更换图片路径后问题解决,确实是图片路径有问题(可能无法访问到图片资源)。
更多推荐
已为社区贡献1条内容
所有评论(0)