代码之家  ›  专栏  ›  技术社区  ›  Antonio Mailtraq

使用itextsharp的当前上下文中不存在名称“color”

  •  0
  • Antonio Mailtraq  · 技术社区  · 6 年前

    我正在使用itextsharp dll创建pdf。

    我想改变我的字体颜色。

    我在谷歌找到了解决方案。

    Document document = new Document(PageSize.A4, 88f, 88f, 10f, 10f);
    Font NormalFont = FontFactory.GetFont("Arial", 12, Font.NORMAL, Color.BLACK);
    

    但我尝试我的源代码。show是一个错误当前上下文中不存在名称“color”。颜色类不喜欢。

    如何解决这个错误。

    谢谢您。

    下面是我的代码。

    using iTextSharp.text;
    using iTextSharp.text.pdf;
    
    
        private void sPDF(DataRow row)
        {
            Document document = new Document(PageSize.A4, 88f, 88f, 10f, 10f);
            Font NormalFont = FontFactory.GetFont("Arial", 12, Font.NORMAL, Color.BLACK);
    
            using (System.IO.MemoryStream memoryStream = new System.IO.MemoryStream())
            {
                PdfWriter writer = PdfWriter.GetInstance(document, memoryStream);
                Phrase phrase = null;
                PdfPCell cell = null;
                PdfPTable table = null;
                Color color = null;
    
                document.Open();
    
                //Separater Line
                color = new Color(System.Drawing.ColorTranslator.FromHtml("#A9A9A9"));
                DrawLine(writer, 25f, document.Top - 79f, document.PageSize.Width - 25f, document.Top - 79f, color);
                DrawLine(writer, 25f, document.Top - 80f, document.PageSize.Width - 25f, document.Top - 80f, color);
                document.Add(table);
    
                document.Close();
                byte[] bytes = memoryStream.ToArray();
                memoryStream.Close();
    
            }
        }
    
        private static void DrawLine(PdfWriter writer, float x1, float y1, float x2, float y2, Color color)
        {
            PdfContentByte contentByte = writer.DirectContent;
            contentByte.SetColorStroke(color);
            contentByte.MoveTo(x1, y1);
            contentByte.LineTo(x2, y2);
            contentByte.Stroke();
        }
    
    1 回复  |  直到 6 年前
        1
  •  1
  •   Bruno Lowagie    6 年前

    正如我之前多次解释过的,我们不再谈论iTextSharp了。几年前,这个名字被更改为.NET。查看您的代码,我发现您使用的是旧版本的itext(可能是版本5)。今天,我们在第7版。见 tutorial 以及 download page .

    你的问题有两个答案:

    1. 请升级到itext 7,并使用itext 7颜色类: http://itextsupport.com/apidocs/iText7/latest/com/itextpdf/kernel/colors/package-summary.html

    2. 如果坚持使用旧版本的itext(注意:不再支持这些版本),请替换 Color 具有 BaseColor : http://itextsupport.com/apidocs/iText5/5.5.13/com/itextpdf/text/BaseColor.html

    我不知道你在哪里找到关于使用 颜色 ,但这些信息一定很古老,因为我们改变了 颜色 进入之内 底色 2009年。

    为了避免进一步的问题,请使用最新版本,并始终参考 official web site .