BF [ 1673620 ] table report - image overflows over next fields

This commit is contained in:
teo_sarca 2007-03-04 21:41:53 +00:00
parent 983af06ab8
commit 69336cd9a0
1 changed files with 4 additions and 0 deletions

View File

@ -300,6 +300,10 @@ public class TableElement extends PrintElement
dataSizes[row][col].addBelow(
new Dimension((int)((ImageElement)dataItem).getWidth(),
(int)((ImageElement)dataItem).getHeight()));
// Adjust the column width - teo_sarca, [ 1673620 ]
float width = (float)Math.ceil(dataSizes[row][col].getWidth());
if (colWidth < width)
colWidth = width;
continue;
}
else if (dataItem instanceof BarcodeElement)