Reputation: 1313
I want to upgarde my code to itext 5.4.3. it was written in earlir version of itext i.e 2.1.7.
i have problem while declaring table,paragraph and all stuffs. my earlier code was like this::
Table tab = new Table();
tab.setWidth(100);
tab.addCell(new Paragraph("Sr. No."));
tab.addCell(new Paragraph("Candidate Name",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Candidate Code",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Login ID",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Password",new Font(Font.HELVETICA, 14, Font.BOLD)));
so please let me know the solution or link for the tutorials based on use of itext 5.4.3 version.
Upvotes: 0
Views: 192
Reputation: 3125
Check this iText Tutorial. Seems quite complete for what you are looking for.
Upvotes: 1