使用asp.net中的itextsharp将HTML文本转换为pdf文件时出错

时间:2011-05-02 11:18:37

标签: asp.net itext pdf-generation html-to-pdf

我使用以下代码将Editor(Ajax控件)中的内容转换为pdf,

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using System.IO;
using iTextSharp.text.html.simpleparser;
using iTextSharp.text;
using iTextSharp.text.pdf;
using iTextSharp.text.html;
/// <summary>
/// Summary description for pdfgeneration
/// </summary>
public class pdfgeneration
{
    public pdfgeneration()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    public void pdfgenerator(String name1, AjaxControlToolkit.HTMLEditor.Editor Editor1)
    {

        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ContentType = "application/pdf";
        // Create PDF document
        Document pdfDocument = new Document(PageSize.A4, 70, 55, 40, 25);

        PdfWriter wri = PdfWriter.GetInstance(pdfDocument, new FileStream("e://" +name1 + ".pdf", FileMode.Create));

        PdfWriter.GetInstance(pdfDocument, HttpContext.Current.Response.OutputStream);

        pdfDocument.Open();
        string htmlText = Editor1.Content;
        System.Collections.Generic.List<IElement> htmlarraylist = HTMLWorker.ParseToList(new StringReader(htmlText), null);

        for (int k = 0; k < htmlarraylist.Count; k++)
        {
            pdfDocument.Add((IElement)htmlarraylist[k]);
        }

        pdfDocument.Close();
        HttpContext.Current.Response.End();
    }


}

我最初在编辑器(Ajax控件)中对以下HTML文本进行了硬编码,

String editorcontent = "<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>" +
                 "<br/>" + "<P align='center'><b>" + courtname + "</b></P>"
                + "<br/><P align='center'>(Before" + jname + "," + desname + ")"
                + "<br/>" + "<P align='right'><b><u>" + DropDownList1.SelectedItem + " no. " + TextBox1.Text + "/" + TextBox2.Text + "</u></b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</P>"
                + "<br />"
  **//this table is the problem//**    + "<table><tr><td width='750px'><p align='left'>" + petitioner + "</p>" + "</td><td>" + "<p align='right'>" + "..Applicant" + "</p>" + "</td></tr>" + "<tr><td><p align='center'>" + "V/s" + "</p>" + "</td><td></td>" + "</tr>" + "<tr><td width='75px'><p align='left'>" + respondent + "</p>" + "</td><td>" + "<p align='right'>" + "..Respondent" + "</p>" + "</td></tr></table>"
                + "<br/><P align='center'><b><u>ORDER</u></b>";
            Editor1.Content = editorcontent;

如果我从上面的代码中删除了以下table,那么成功生成了pdf。但是一旦我在我的HTMl代码中包含table,我就会收到以下错误

enter image description here

如何解决我的问题。

1 个答案:

答案 0 :(得分:6)

当前版本的iTextSharp 支持使用'px'指定的单元格宽度。它 支持百分比或仅数字宽度的单元格宽度。

当你尝试对HTML内容进行硬编码时,两个地方都有'px':

  1. <td width='750px'>
  2. <td width='75px'>
  3. 删除'px',你会没事的。