How to get the absolute width of a column from iText when table columns are specified with their relative size ?
What I tried
I specified 3 columns with their relative width as float like this:
PdfPCell cell2;
PdfPTable table2 = new PdfPTable(new float[]{(float) 4.5, (float) 0.5, 9});
table2.setWidthPercentage(100);
What I got
I tried to use table2.getAbsoluteWidths()[2]
but result is float 0.0
.
What I expected
I want to get the absolute width (which got maximized) for every column, after table width has been calculated dynamically on the PDF.
----------------------- EDIT ----------------------
Actually i need width of a column before document added and then replace my hardcode float variable restriction.
I Have many data String and wanna set in another column when get maximum width page with splitting in function restrictWidthOfFont
String fullAlamatPP = "test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test ";
float restrictions = (float) 330.12103; // this is width of a column from table
String alamatSesuaiKtpPP[] = restrictWidthOfFont(fullAlamatPP, font_body, restrictions);
Phrase p_alamat1_ct = new Phrase(alamatSesuaiKtpPP[0], font_body);
p_alamat1_ct.add(dottedline);
cell2 = new PdfPCell(p_alamat1_ct);
cell2.setBorder(PdfPCell.NO_BORDER);
table2.addCell(cell2);
Phrase p_alamat2_ct = new Phrase(alamatSesuaiKtpPP[1], font_body);
p_alamat2_ct.add(dottedline);
cell2 = new PdfPCell(p_alamat2_ct);
cell2.setBorder(PdfPCell.NO_BORDER);
table2.addCell(cell2);
private static String[] restrictWidthOfFont(String character, Font font, float restrictions) {
String results[];
results = new String[] {"",""};
String concatChar = " ";
float widthOfString = 0;
for (int i = 0; i < character.length();i++) {
concatChar += character.charAt(i);
widthOfString = font.getCalculatedBaseFont(true).getWidthPoint(concatChar, font.getCalculatedSize());
// System.out.println("widthOfString " + widthOfString);
if (widthOfString > restrictions) {
results[0] = concatChar.substring(0, concatChar.length() - 1);
results[1] = character.substring(i, character.length());
break;
}
}
if (results[0] == "") {
results[0] = character;
}
return results;
}
that possible get width of a column before table document added?
Issue and explanation
The function
table.getAbsoluteWidths()
relies on the requirement that totalWidth of the table must be set, hencetable.getTotalWidth() > 0
.This is because inside the
com.itextpdf.text.pdf.PdfPTable
class a methodcalculateWidths()
is called which then calculates the absolute-widths of all columns:Solution
In order to make sure that the totalWidth is set before you retrieve the relativeWidths array, you need to:
Code for solution
The following code incorporates your algorithm to split text (i.e. a long address or alamat) across cells based on the restriction of max width of a column:
See also
How to make PdfPTable calculate column-width dynamically