如何以编程方式填充现有PDF文档

时间:2014-05-29 13:45:09

标签: c# vb.net wordpress pdf

我有一个PDF文档,它不是使用Adobe LifeCycle Designer创建的。我要做的是预先填写文档中的公共字段。

我已经研究过使用iTextSharp和PDFSharp的许多选项,但不确定如何正确使用它。

我最近遇到过这篇文章:FillPDF它有很好的文档,但与我创建的内容不符。

我也在阅读有关iTextSharp的内容,可以在VS中导入并使用,但我不知道从哪里开始。我看了很多教程,但没有一个教程描述如何开始。

请帮忙......

1 个答案:

答案 0 :(得分:3)

我最近使用itextsharp

开展了一个庞大的项目

http://www.mikesdotnetting.com/Article/88/iTextSharp-Drawing-shapes-and-Graphics http://www.mikesdotnetting.com/Article/81/iTextSharp-Working-with-Fonts

这里有一些让你入门的事情

但是从pdf读取然后输出回来 你需要一些正则表达式来帮助你。

这是我的示例代码之一(这会在每个新页面事件上创建页眉或页脚)

using CMS;
using CMS.Tags;
using CMS.Pages;
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Globalization;
using System.Net;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using iTextSharp.text;
using iTextSharp.text.html;
using iTextSharp.text.xml;
using iTextSharp.text.pdf;
using iTextSharp.text.pdf.draw;
using System.IO;
using System.Text.RegularExpressions;
using System.Text;
using System.util;

public class pdfPage : iTextSharp.text.pdf.PdfPageEventHelper
{
public override void OnEndPage(PdfWriter writer, Document doc)
    {
        PdfContentByte cb = writer.DirectContent;
        cb.SetLineWidth(1f);
        cb.SetCMYKColorStroke(66, 59, 57, 38);
        cb.MoveTo(30, 55);     
        cb.LineTo(doc.PageSize.Width - 30 , 55);     
        cb.Stroke();
        cb.MoveTo(185, 80);
        cb.LineTo(185, 25);
        cb.Stroke();

        ColumnText ct = new ColumnText(cb);
        BaseFont bfTimes = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, false);
        Font times = new Font(bfTimes, 10);
        times.SetColor(90, 90, 90);
        ct.SetSimpleColumn(new Phrase("text text", times), 60, 60, 175, 78, 15, Element.ALIGN_MIDDLE);
        ct.Go();
        times.SetColor(1, 73, 144);
        ct.SetSimpleColumn(new Phrase("text textn", times), 60, 38, 175, 55, 15, Element.ALIGN_MIDDLE);
        ct.Go();
        times.SetColor(90, 90, 90);
        ct.SetSimpleColumn(new Phrase("text here", times), 190, 60, doc.PageSize.Width - 32 , 78, 15, Element.ALIGN_RIGHT);
        ct.Go();
        times.SetColor(90, 90, 90);
        ct.SetSimpleColumn(new Phrase("text here", times), 190, 38, doc.PageSize.Width - 32 , 55, 15, Element.ALIGN_RIGHT);
        ct.Go();
    }
}

这是我启动pdf

的代码的一部分
using (var ms = new MemoryStream())
        {
            using (var doc = new Document(PageSize.LETTER, 220f, 30f, 115f, 100f)){

                try
                {
                  pdfPage page = new pdfPage();
                  PdfWriter writer = PdfWriter.GetInstance(doc, ms);
                  writer.PageEvent = page;
                  doc.Open();

                iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(RESOURCE);
                img.ScalePercent(49f);
                //img.Width = doc.PageSize.Width;
                //img.Alignment = iTextSharp.text.Image.ALIGN_CENTER;
                img.SetAbsolutePosition(-8, 
                    doc.PageSize.Height - 180.6f);
                doc.Add(img);

这是我的输出代码(作为从服务器直接创建的下载pdf *在服务器上未保存)

}
                catch (Exception ex)
                {
                  //Log error;
                }
                finally
                {
                  doc.Close();
                }

            }
            Response.Clear();
              //Response.ContentType = "application/pdf";
              Response.ContentType = "application/octet-stream";
              Response.AddHeader("content-disposition", "attachment;filename= Company " + namefile + ".pdf");
              Response.Buffer = true; 
              Response.Clear();
              var bytes = ms.ToArray();
              Response.OutputStream.Write(bytes, 0, bytes.Length);
              Response.OutputStream.Flush();

        }