ITextSharp添加文字。有些文字没有显示出来

时间:2013-05-02 02:38:22

标签: pdf itextsharp

我正在使用此方法向已创建的pdf文档添加文本。 ITextSharp insert text to an existing pdf 基本上它使用PdfContentByte,然后将内容模板添加到页面。

我发现在文件的某些区域,文本没有显示出来。 似乎我正在添加的文本显示在页面上已有的内容背后?我将pdf文档简化为仅仅是图像,但我仍然遇到与扁平文件相同的问题。

使用Itextsharp添加隐藏文字是否有任何问题?

我也尝试使用DirectContentUnder,因为此链接中的建议无济于事。 iTextSharp hides text when write

这是我正在使用的代码......有了这个,我试图基本上覆盖PDF上的方格纸。在此示例中,每个页面的左上角都有一个未填充的框。这个地方的原始pdf中有一张图片。在第4页和第5页,有些盒子没有填充,但它们似乎不是图像。

PdfReader reader = new PdfReader(oldFile);
iTextSharp.text.Rectangle size = reader.GetPageSizeWithRotation(1);
Document document = new Document(size);

// open the writer
FileStream fs = new FileStream(newFile, FileMode.Create, FileAccess.Write);
PdfWriter writer = PdfWriter.GetInstance(document, fs);
document.Open();


// the pdf content
PdfContentByte cb = writer.DirectContent;


for (int i = 0; i < reader.NumberOfPages; i++)
{
    document.NewPage();
    // select the font properties
    BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);

    cb.SetFontAndSize(bf, 4);
    cb.SetColorStroke(BaseColor.GREEN);
    cb.SetLineWidth(1f);
    for (int j = 10; j < 600; j += 10)
    {
        WriteToDoc(ref cb, j.ToString(), j, 10);//Write the line number
        WriteToDoc(ref cb, j.ToString(), j, 780);//Write the line number
        if (j % 20 == 0)
        {
            cb.MoveTo(j, 20);
            cb.LineTo(j, 760);
            cb.Stroke();
        }
    }
    for (int j = 10; j < 800; j += 10)
    {

       WriteToDoc(ref cb, j.ToString(), 5, j);//Write the line number
       WriteToDoc(ref cb, j.ToString(), 590, j);//Write the line number
       if (j % 20 == 0)
       {
             cb.MoveTo(15, j);
             cb.LineTo(575, j);
             cb.Stroke();
       }
    }




 // create the new page and add it to the pdf
 PdfImportedPage page = writer.GetImportedPage(reader, i + 1);
 cb.AddTemplate(page, 0, 0);

 }

 // close the streams and voilá the file should be changed :)
 document.Close();
 fs.Close();
 writer.Close();
 reader.Close();

感谢您提供的任何帮助......我真的很感激! -Greg

1 个答案:

答案 0 :(得分:4)

首先:如果您尝试在PDF上方基本叠加方格纸,为什么首先绘制方格纸并将原始页面标记在其上?你本质上是底层方格纸,而不是覆盖它。

根据页面内容的不同,这种方格纸可能很容易被覆盖。例如。如果页面内容中有一个填充的矩形,则在结果中,每个页面的左上角都有一个未填充的框。

因此,只需先添加旧页面内容,然后添加叠加更改。

这就是说,对于将更改应用于现有PDF的任务,使用PdfWriterGetImportedPage并不是最佳的。这实际上是PdfStamper类的一项任务,它用于在现有PDF上标记其他内容。

E.g。看看sample StampText,关键代码是:

PdfReader reader = new PdfReader(resource); 
using (var ms = new MemoryStream())
{
  using (PdfStamper stamper = new PdfStamper(reader, ms))
  {
    PdfContentByte canvas = stamper.GetOverContent(1);
    ColumnText.ShowTextAligned( canvas, Element.ALIGN_LEFT, new Phrase("Hello people!"), 36, 540, 0 );
  }
  return ms.ToArray();
}