iTextSharp - 文本重叠图像

时间:2011-12-28 15:36:31

标签: image text event-handling itextsharp

我正在使用iTextSharpText来构建PDF。

我被要求在图像上添加一些动态文本。 我已经尝试了一些我在这个论坛和其他网站上找到的例子,但我似乎无法做到这一点,这真的让我疯狂。

我按照这个帖子(iTextSharp Adding Text plus Barcode in a single cell?),尝试了两个答案。

首先我尝试了:

            var img_operacao = Image.GetInstance(String.Format("{0}{1}", Settings.Default.SiteRootURL, "/PublishingImages/PDF_operacao.png"));
            img_operacao.ScaleToFit(150, 41);

            img_operacao.Alignment = Image.UNDERLYING;

            var ph0 = new Phrase(title0, pageHeader);
            var cell = new PdfPCell();

            cell.AddElement(ph0);
            cell.AddElement(new Phrase(new Chunk(img_operacao, 0, 0)));
            table.AddCell(cell);

我得到了这个: http://imageshack.us/photo/my-images/515/25265113.png/

我的第二次尝试:

            var img_operacao = Image.GetInstance(String.Format("{0}{1}", Settings.Default.SiteRootURL, "/PublishingImages/PDF_operacao.png"));
            img_operacao.ScaleToFit(150, 41);

            img_operacao.Alignment = Image.UNDERLYING;

            var cell = new PdfPCell
                       {
                           Border = Rectangle.NO_BORDER,
                           PaddingTop = 0,
                           PaddingBottom = 0,
                           HorizontalAlignment = Element.ALIGN_CENTER,
                           VerticalAlignment = Element.ALIGN_MIDDLE
                       };

            var ph0 = new Phrase();
            ph0.Add(new Chunk(title0, pageHeader));
            ph0.Add(new Chunk(img_operacao, 0, 0, true));

            cell.AddElement(ph0);
            table.AddCell(cell);

我得到了: http://imageshack.us/photo/my-images/688/89424619.png/

我已经尝试了其他几个变体,包括块,段落等,但是我无法在图像上看到文字!!!

如果有人可以帮助我,我会非常感激。 我现在卡住了......

非常感谢

2 个答案:

答案 0 :(得分:3)

您似乎想要将背景图片添加到PdfPCell。建议的方法是实现IPdfPCellEvent接口。如文档所述,当您编写实现CellLayout的自定义类时,您只需要编写一个方法IPdfPCellEvent。从您的代码看起来您​​处于Web环境中,所以这个简单的示例HTTP处理程序(.ashx)应该很容易理解:

<%@ WebHandler Language="C#" Class="cellEvent" %>
using System;
using System.Web;
using iTextSharp.text;
using iTextSharp.text.pdf;

public class cellEvent : IHttpHandler {
  public void ProcessRequest (HttpContext context) {
    HttpServerUtility Server = context.Server;
    HttpResponse Response = context.Response;
    Response.ContentType = "application/pdf";
    // replace with your image
    string imagePath = Server.MapPath("./Image1.png");
    Image image = Image.GetInstance(imagePath);
    using (Document document = new Document()) {
      PdfWriter.GetInstance(document, Response.OutputStream);      
      document.Open();
      PdfPTable table = new PdfPTable(2);
      for (int i = 1; i < 10; ++i) {
        PdfPCell cell = new PdfPCell(new PdfPCell());
        // add the text
        cell.Phrase = new Phrase(string.Format("CELL 1, ROW {0}", i));
        // your class that adds the background image
        cell.CellEvent = new TestCellEvent() { 
          CellImage = image
        };
        table.AddCell(cell);
        // add __new__ cell; CellEvent no longer applies;
        // (no background image)
        table.AddCell(new PdfPCell(new Phrase(
          string.Format("CELL 2, ROW {0}", i
        ))));
      }
      document.Add(table);
    }
  }
  public bool IsReusable { get { return false; } }

// custom class to implement a cell background image
  class TestCellEvent : IPdfPCellEvent {
    public Image CellImage;
    public void CellLayout(
      PdfPCell cell, Rectangle position, PdfContentByte[] canvases
    ) 
    {
      PdfContentByte cb = canvases[PdfPTable.BACKGROUNDCANVAS];
      // scale image to the cell's __full__ height
      CellImage.ScaleAbsoluteHeight(cell.Height);
      // scale image to the cell's __full__ width
      CellImage.ScaleAbsoluteWidth(cell.Width);
      // you must also explcitly set the image position!
      CellImage.SetAbsolutePosition(position.Left, position.Bottom);
      // add the image to the cell
      cb.AddImage(CellImage);
    }
  }
}

希望内联评论有意义。请注意,Image对象已实例化一次。如果您重复使用相同的图像,这样做会大大减少文件大小,而不是为每个单元重复实例化Image,因为图像数据只会添加一次到PDF。

祝你好运。

答案 1 :(得分:0)

我在尝试根据自己的需要解决此问题时偶然发现了一个解决方案。我创建了一个Table对象并定义了多个列。第一列设置为最小宽度,其余为适当宽度以定位文本位于表单上。我正在制作一张大约1“x7”的图像。图像已添加到表格行第一列的单元格中。它的尺寸由SetAbsoluteHeight和SetAbsoluteWidth设置,远远超过了列的大小,因此图像类型放入行的其余列中/下。对于覆盖在图像上的文本,使用列宽,添加Chunk.Newlines和段落SetLeading(以影响行间距)来调整文本定位。