我在使用表格在iTextSharp中创建特定布局时遇到了问题。
我通过创建一个将页面拆分为两个的表来开始文档,然后在每个列中插入一个包含x行和1列的附加表。
我想这样做的原因是因为我想要一个类似于this HTML的布局。
但正在发生的事情如下:
根据代码独立的表似乎是连在一起的。
旧代码
private void AddBody()
{
Image smallerLogo = Image.GetInstance(_logo);
smallerLogo.ScaleAbsolute(100f, 100f);
Image normalLogo = Image.GetInstance(_logo);
ExtendedTable table = new ExtendedTable(2, 1, true, false, true);
table.SetWidths(new[] { 50, 50 });
ExtendedTable col1 = new ExtendedTable(1, 6, true, false, false);
col1.AddCell(new ExtendedCell(new Chunk("Impressions", _headingFont), false));
col1.AddCell(new ExtendedCell(smallerLogo, false));
col1.AddCell(new ExtendedCell(new Chunk("Visitor funnel", _headingFont), false));
col1.AddCell(new ExtendedCell(smallerLogo, false));
col1.AddCell(new ExtendedCell(new Chunk("Shortlists", _headingFont), false));
col1.AddCell(new ExtendedCell(smallerLogo, false));
ExtendedTable col2 = new ExtendedTable(1, 6, true, false, false);
col2.AddCell(new ExtendedCell(new Chunk("Leads", _headingFont), false));
col2.AddCell(new ExtendedCell(normalLogo, false));
col2.AddCell(new ExtendedCell(new Chunk("Demographics", _headingFont), false));
col2.AddCell(new ExtendedCell(normalLogo, false));
table.AddCell(new ExtendedCell(col1, false));
table.AddCell(new ExtendedCell(col2, false));
_document.Add(table);
}
新代码
private void AddBody()
{
Image smallerLogo = Image.GetInstance(_logo);
smallerLogo.ScaleAbsolute(60.0f, 60.0f);
Image normalLogo = Image.GetInstance(_logo);
PdfPTable table = new PdfPTable(2);
table.SetWidths(new[] { 50, 50 });
PdfPTable col1 = new PdfPTable(1);
col1.AddCell("Impressions");
col1.AddCell(new PdfPCell(smallerLogo));
col1.AddCell("Visitor funnel");
col1.AddCell(new PdfPCell(smallerLogo));
col1.AddCell("Shortlists");
col1.AddCell(new PdfPCell(smallerLogo));
PdfPTable col2 = new PdfPTable(1);
col2.AddCell("Leads");
col2.AddCell(normalLogo);
col2.AddCell("Demographics");
col2.AddCell(normalLogo);
table.AddCell(col1);
table.AddCell(col2);
_document.Add(table);
}
ExtendedCell
和ExtendedTable
是删除表格边框的小类。
有什么想法吗?