设置每页固定行数,使用itextsharp生成PDF

时间:2012-10-23 11:19:34

标签: c# .net c#-4.0 pdf-generation itextsharp

我有List<object>,此列表包含数千条记录。我想使用itextsharp生成pdf。和Pdfptable生成pdf它工作正常,但我想在pdf中每页只有10条记录 我该怎么办?

2 个答案:

答案 0 :(得分:3)

设置每页行数的另一种方法:

using System.Diagnostics;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;

namespace RowsCountSample
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var pdfDoc = new Document(PageSize.A4))
            {
                var pdfWriter = PdfWriter.GetInstance(pdfDoc, new FileStream("Test.pdf", FileMode.Create));
                pdfDoc.Open();

                var table1 = new PdfPTable(3);
                table1.HeaderRows = 2;
                table1.FooterRows = 1;

                //header row 
                var headerCell = new PdfPCell(new Phrase("header"));
                headerCell.Colspan = 3;
                headerCell.HorizontalAlignment = Element.ALIGN_CENTER;
                table1.AddCell(headerCell);

                //footer row 
                var footerCell = new PdfPCell(new Phrase("footer"));
                footerCell.Colspan = 3;
                footerCell.HorizontalAlignment = Element.ALIGN_CENTER;
                table1.AddCell(footerCell);

                //adding some rows 
                for (int i = 0; i < 70; i++)
                {
                    //adds a new row
                    table1.AddCell(new Phrase("Cell[0], Row[" + i + "]"));
                    table1.AddCell(new Phrase("Cell[1], Row[" + i + "]"));
                    table1.AddCell(new Phrase("Cell[2], Row[" + i + "]"));

                    //sets the number of rows per page
                    if (i > 0 && table1.Rows.Count % 7 == 0)
                    {
                        pdfDoc.Add(table1);
                        table1.DeleteBodyRows();
                        pdfDoc.NewPage();
                    }
                }

                pdfDoc.Add(table1);
            }

            //open the final file with adobe reader for instance. 
            Process.Start("Test.pdf");
        }
    }
}

答案 1 :(得分:2)

在最新版本的iTextSharp(5.3.3)中,添加了新功能,允许您定义断点:​​SetBreakPoints(int[] breakPoints) 如果定义一个10的倍数数组,则可以使用它来获得所需的效果。

如果你有一个旧版本,你应该遍历列表并为每10个对象创建一个新的PdfPTable。请注意,如果您希望将应用程序的内存使用率保持在较低水平,这是更好的解决方案。