我正在使用下面显示的一段代码,使用 iTextSharp 库将我的网页导出为 pdf。网页分为两列,一列宽度为 90%,另一列宽度为 10%。但是,当下载为 PDF 时,两列分配相同的宽度。每列在下载的 PDF 中占 50% 的宽度。
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=ResumeTemplate.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
wrapper.RenderControl(hw);
Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 100f, 0f);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
StringReader sr = new StringReader(sw.ToString());
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();
下面是我的 HTML 代码:
<table border="0" width="100%" id="maintable" runat="server" >
<tr>
<td>
<div id="content_left" runat="server" style="margin-right:10px; float:left;vertical-align:top;width:90%" >
</td>
<td>
<div id="content_right" runat="server" style="vertical-align:top;width:10%">
</div>
</div>
</td>
</tr>
</table>
divcontent_left
并content_right
在页面中以指定的宽度精确显示。当它被下载为 Word 时,它会在网页中以精确的 css 显示。但是,当以 PDF 格式下载时,content_left
并content_right
采用与页面大小相等的宽度(分配给content_left
和的 50% 宽度content_right
)。