gpt4 book ai didi

c# - 使用 c# 和 asp.net 将 HTML 内容转换为 Pdf

转载 作者:行者123 更新时间:2023-11-28 01:51:58 24 4
gpt4 key购买 nike

我在这里尝试将 html div 标签内的内容转换为 pdf 我发现了以下错误:

出现输入字符串格式不正确

这是我尝试使用 C# 编写的代码:

    divexcel.Visible = true;
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=TestPage.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
divexcel.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
Document pdfDoc = new Document(PageSize.A4, 80f, 80f, -2f, 35f);
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter writer = PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
//head.WriteSelectedRows(0, -1, page.Width / 8, page.Height - pdfDoc.TopMargin + head.TotalHeight, writer.DirectContent);
//pdfDoc.Add(headerTbl);
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();
------------------------------------------

这是我的html代码

<div id="divexcel" runat="server">
<table id="tbDetails" width="800px">
<thead >
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>

最佳答案

尝试将 width="800px"替换为 width="800"。应该工作

关于c# - 使用 c# 和 asp.net 将 HTML 内容转换为 Pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19565807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com