我正在使用itexsharp创建PDF,并有一个带有标题和行的表。我可以给标题添加颜色,但是当我向行(单元格)添加颜色时,我不能这样做。
如何为行添加颜色。

例:

 ..................
:Header1 : Header2 :  //I have a sytle here allreadey
 ...................
:Row1    : Row2    : //I want to add style here?
....................


码:

private String WritePDF(DataTable dt)
        {
            String fileName = "";

            //Creating iTextSharp Table from the DataTable data
            PdfPTable pdfTable = new PdfPTable(m_PDFColumnCount);

            pdfTable.DefaultCell.Padding = 1;
            pdfTable.WidthPercentage = 100;
            pdfTable.HorizontalAlignment = Element.ALIGN_JUSTIFIED;
           // pdfTable.DefaultCell.BorderWidth = 1;
           //194 214 155


            this.BuildPDFHeader(pdfTable, "date");
            this.BuildPDFHeader(pdfTable, "time");
            this.BuildPDFHeader(pdfTable, "result");
            this.BuildPDFHeader(pdfTable, "fullname");
            this.BuildPDFHeader(pdfTable, "regarding");




            //Adding DataRow
                for (int intIndex = 0; intIndex < dt.Rows.Count; intIndex++)
                {

                    dt.Rows[intIndex]["details"] = getplaintext(dt.Rows[intIndex]["details"].ToString());


                  //Font verdana = FontFactory.GetFont("Verdana", 10, new Color(125, 88, 15));
                  //cell.BackgroundColor = new iTextSharp.text.Color(51, 102, 102);


                  pdfTable.AddCell(dt.Rows[intIndex]["date"].ToString());
                  pdfTable.AddCell(dt.Rows[intIndex]["time"].ToString());
                  pdfTable.AddCell(dt.Rows[intIndex]["result"].ToString());
                  pdfTable.AddCell(dt.Rows[intIndex]["fullname"].ToString());
                  pdfTable.AddCell(dt.Rows[intIndex]["regarding"].ToString());

                  PdfPCell cell = new PdfPCell(new Phrase(dt.Rows[intIndex]["details"].ToString()));
                  cell.Colspan = 5;
                  pdfTable.AddCell(cell);


                }

            String folderPath = "C:\\PDFs\\"; //should be in configfile.

            fileName =  String.Format("{0}{1}{2}",folderPath, dt.Rows[0]["id"].ToString(),".pdf" );

            //Exporting to PDF

            if (!Directory.Exists(folderPath))
            {
                Directory.CreateDirectory(folderPath);
            }
            using (FileStream stream = new FileStream(fileName, FileMode.OpenOrCreate ))
            {
                Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 10f, 0f);
                PdfWriter.GetInstance(pdfDoc, stream);
                pdfDoc.Open();
                pdfDoc.Add(pdfTable);
                pdfDoc.Close();
                stream.Close();
            }

            return fileName;

        }

        private void BuildPDFHeader( PdfPTable pdfTable, String strText)
        {
              PdfPCell cell = new PdfPCell(new Phrase(strText));
                    cell.BackgroundColor = new iTextSharp.text.Color(51, 102,102);
                    pdfTable.AddCell(cell);
        }

最佳答案

对于标题行,您将自己创建PdfPCell对象:

PdfPCell cell = new PdfPCell(new Phrase(strText));
cell.BackgroundColor = new iTextSharp.text.BaseColor(51, 102,102);


对于其余的行,您要求iTextSharp创建PdfPCell对象:

pdfTable.AddCell(dt.Rows[intIndex]["date"].ToString());


这是一个stringdt.Rows[intIndex]["date"].ToString()

iText将以与创建标题的PdfPCell对象相同的方式创建PdfPCell,因此一种选择是,以相同的方式为其他行创建PdfPCell对象:

PdfPCell cell = new PdfPCell(new Phrase(dt.Rows[intIndex]["date"].ToString()));
cell.BackgroundColor = new iTextSharp.text.BaseColor(60, 60, 60);
pdfTable.AddCell(cell);


但是,这是一个捷径。您可以为默认单元格定义背景颜色:

pdfTable.DefaultCell.BackgroundColor = new iTextSharp.text.BaseColor(60, 60, 60);


现在,使用string方法添加为addCell()的每个单元格的背景色将具有默认单元格的背景色。

重要说明:我发现您使用的iTextSharp版本已过6年:您使用的是Color类而不是BaseColor。请注意,该版本存在技术和法律问题。请升级到最新版本。

10-04 17:22