为什么我的PDF生成为空白?

时间:2015-05-16 13:45:34

标签: c# pdf itextsharp xmlworker

我正在使用ItextSharp和c#,asp.net MVC来生成PDF报告。但是,当我生成报告时,PDF返回为空白(除了正常工作的标题)。我很乐意接受你的意见。

生成报告的代码如下:

                using (var writer = PdfWriter.GetInstance(doc, ms))
                {
                    // This sorts out the Header and Footer parts.
                    var headerFooter = new ReportHeaderFooter(reportsAccessor);
                    writer.PageEvent = headerFooter;

                    var rootPath = ConfigurationManager.AppSettings["SaveFileRootPath"];
                    string html = File.ReadAllText(rootPath + "/reports/report.html");                      

                    // Perform the parsing to PDF
                    doc.Open();

                    // The html needs to be sorted before this call.
                    StringReader sr = new StringReader(html);
                    XMLWorkerHelper.GetInstance().ParseXHtml(writer, doc, sr);
                    doc.Close();
                    writer.Close();
                    res = ms.ToArray();
                }

我知道有很多隐藏的内容,但为了论证,这个生成并放入StringReader的HTML示例如下:

    <table style="font-size:10pt">
        <tr>
            <td rowspan="4"> Address<br/> </td>
            <td>Phone: phone</td>
        </tr>
        <tr>
            <td>Fax: fax</td>
        </tr>
        <tr>
            <td>Email: email@example.com</td>
        </tr>
        <tr>
            <td>Website: example.com</td>
        </tr>
    <table>

    <table style="font-size:10pt; width:100%">
        <tr style="width:50%">
            <td>Settlement: 30 days from invoice</td>
        </tr>
        <tr>
            <td>Delivery Charge Notes: N/A</td>
        </tr>
    </table>
    <p style="width:100%; font-size:10pt">
    I love notes</p>

    <table>
    <tr style="font-weight:bold">
        <td>Item</td>
        <td>Item Code</td>
        <td>Description</td>
        <td>Unit Size</td>
        <td>Units Per Outer</td>
        <td>Units Per Pallet</td>
        <td>Invoice Price Volume Breaks</td>
        <td>Branding</td>
        <td>Notes</td>
    </tr>

    </table>

但是,这个html会生成一个漂亮的空白PDF文件(不是我想要的)。我无法看到这可能有什么问题,并希望对两件事情有所帮助:

[1]为什么报告是空白的 [2]如果这是解析中的错误,为什么它没有出现错误而是一个空白报告(我可以设置一个设置或参数,它会抛出比空白更有用的错误报告?)

更新: 我添加了页眉/页脚的代码

public string HeaderTitle {get;组; }         public IReportsAccessor ReportsAccessor {get;组; }         public ReportHeaderFooter(IReportsAccessor reportsAccessor)         {             this.ReportsAccessor = reportsAccessor;         }

    public override void OnStartPage(PdfWriter writer, Document document)
    {
        base.OnStartPage(writer, document);
        var rootPath = ConfigurationManager.AppSettings["SaveFileRootPath"];
        GetReportImageResult imgInfo = ReportsAccessor.GetImage(4);

        byte[] header_img = imgInfo.ReportImage;
        string logoFn = rootPath + "/tmp/logo.png";
        File.WriteAllBytes(logoFn, header_img);
        string html = File.ReadAllText(rootPath + "/reports/report_header.html");
        html = html.Replace("{{ title }}", HeaderTitle);
        html = html.Replace("{{ logo_img }}", logoFn);

        StringReader sr = new StringReader(html);
        XMLWorkerHelper.GetInstance().ParseXHtml(writer, document, sr);          
    }

1 个答案:

答案 0 :(得分:3)

当我通过我的代码运行HTML时,我确实得到了一个例外,因为HTML中存在一个偷偷摸摸的错误。第一个表没有结束标记:它表示<table>而不是</table>。这很容易被忽视。您可以在此处找到更正后的HTML:table10.html

这就是生成的PDF的样子:html_table_10.pdf

enter image description here

您的代码和我的代码之间的一个主要区别是,我使用了iText / XML Worker 5.5.6(Java),并且您使用了iTextSharp / XML Worker(C#)。虽然Java iText和XML Worker与C#iTextSharp和XML Worker保持同步(因此应具有相同的行为),但底层XML解析器是不同的。

我知道我们决定表现得像浏览器(*),默默地允许一些糟糕的HTML构造失败,但我对Java XML解析的经验是抛出异常。也许C#XML解析不会。

(*)我是iText集团的首席执行官,该集团由比利时,美国和新加坡的公司组成。

至于“css resolver crying”异常,我们将在下一个版本中将其删除: enter image description here