我刚刚将iTextSharp XMLWorker nuget包(及其依赖项)添加到我的项目中,并且我尝试将HTML从字符串转换为PDF文件,即使没有抛出异常,正在使用两个空白页生成PDF文件。为什么呢?
以前版本的代码只使用了带有HTMLWorker和ParseList方法的iTextSharp 5.5.8.0,然后我切换到
以下是我使用的代码:
public void ExportToPdf() {
string htmlString = "";
Document document = new Document(PageSize.A4, 40, 40, 40, 40);
var memoryStream = new MemoryStream();
PdfWriter writer = PdfWriter.GetInstance(document, memoryStream);
document.Open();
htmlString = sbBodyMail.ToString();
XMLWorkerHelper.GetInstance().ParseXHtml(writer, document, new StringReader(htmlString));
document.Close();
DownloadFile(memoryStream);
}
public void DownloadFile(MemoryStream memoryStream) {
//Clears all content output from Buffer Stream
Response.ClearContent();
//Clears all headers from Buffer Stream
Response.ClearHeaders();
//Adds an HTTP header to the output stream
Response.AddHeader("Content-Disposition", "attachment;filename=Report_Diagnosis.pdf");
//Gets or Sets the HTTP MIME type of the output stream
Response.ContentType = "application/pdf";
//Writes the content of the specified file directory to an HTTP response output stream as a file block
Response.BinaryWrite(memoryStream.ToArray());
//Response.Write(doc);
//sends all currently buffered output to the client
Response.Flush();
//Clears all content output from Buffer Stream
Response.Clear();
}
如果我在document.Add(new Paragraph("Just a test"));
之前放置document.Close();
,则会在第二页中呈现段落,但文档的其余部分仍为空白。
我已将htmlString
变量中的HTML更改为DIV
和TABLE
,但它确实有效。所以,现在问题变成了:我如何知道HTML的哪一部分在XMLWorker中导致了一些错误?
答案 0 :(得分:4)
我已经发现XMLWorkerHelper在使用DIV
width属性时遇到了问题(甚至在样式属性上设置),不幸的是它没有抛出任何异常来帮助你解决这个问题。
我从iTextSharp的开发人员那里得到了这个答案,他说我们还没有支持中心表,所以我假设这个也不受支持。