This new feature enables DynamicJasper to use images in the detail band.
In the following example, we are adding an image column (the last one)
FastReportBuilder drb = new FastReportBuilder();
drb.addColumn("State", "state", String.class.getName(),30)
.addColumn("Branch", "branch", String.class.getName(),30)
.addColumn("Product Line", "productLine", String.class.getName(),50)
.addColumn("Item", "item", String.class.getName(),50)
.addColumn("Item Code", "id", Long.class.getName(),30,true)
.addColumn("Quantity", "quantity", Long.class.getName(),60,true)
.addColumn("Amount", "amount", Float.class.getName(),70,true)
.addImageColumn("IMG", "image", 50, true,ImageScaleMode.FILL_PROPORTIONALLY ,style)
.addGroups(2)
.setDetailHeight(17)
.setTitle("November 2006 sales report")
.setSubtitle("This report was generated at " + new Date())
.setUseFullPageWidth(true);
In this code, the key call is
.addImageColumn(<title>, <property>, <width>, <fixed width>, <fill mode> , <style>)
Where
Other possible call is
addImageColumn(<title>, <property>, <className>, <width>, <fixedWidth>, <imageScaleMode>, <style>)
Where
This code generate a report like this:

Refer to ImageColumnReportTest.html for a working example.