我正在尝试将BIRT(3.7)与我的RCP应用程序集成。
生成转换为图像的报告图表(PNG,SVG,e.t)。我想在生成html报告时制作图表(图像)嵌入
如何在html报告中制作嵌入式图像图表?
setBaseImageUrl(“url”)的决定不适合我。
答案 0 :(得分:7)
我找到了一个解决方案:)
...
IReportRunnable design = engine.openReportDesign(designInputStream);
IRunAndRenderTask task = engine.createRunAndRenderTask(design);
IRenderOption options = null;
switch (format) {
case ReportFormats.HTML_REPORT:
options = new HTMLRenderOption();
options.setOutputFormat(HTMLRenderOption.HTML);
options.setOutputStream(outputStream);
options.setSupportedImageFormats("PNG");
((HTMLRenderOption) options).setEmbeddable(true);
options.setImageHandler(new HTMLServerImageHandler() {
@Override
protected String handleImage(IImage image, Object context,
String prefix, boolean needMap) {
String embeddedImage = null;
//embeddedImage = convert image.getImageStream() to Base64 String
return "data:image/png;base64," + embeddedImage;
}
});
break;
...
if (options != null) {
task.setRenderOption(options);
task.run();
task.close();
engine.destroy();
}
...
答案 1 :(得分:1)
steps to insert image in birt design
从调色板拖动图像项并按照上述步骤操作。您可以轻松地将图像添加到您的设计中。根据您的便利,您可以将您的设计填充为html,doc,pdf等
答案 2 :(得分:0)
您可以对图像中的数据进行base64编码,并将其直接嵌入到HTML中或作为javascript变量
http://www.greywyvern.com/code/php/binary2base64/
这可能很方便,但会使您的页面更大。