我正在使用C#.net
中的PdfSharp生成PDF在我的UAT中,pdf正在很好地生成
但在生产服务器上,不完整数据显示在PDF的页脚
我的代码如下
string strData = File.ReadAllText(strSourceFilepath);
PdfDocument Document = new PdfDocument();
PdfPage Pdfpage = Document.AddPage();
System.Drawing.Size size = new System.Drawing.Size(700, 1000);
System.Drawing.Color color = System.Drawing.Color.White;
System.Drawing.Image image = HtmlRender.RenderToImage(strData, size, color);
XGraphics xGraphics = XGraphics.FromPdfPage(Document.Pages[0]);
xGraphics.DrawImage(image, 0, 0);
// Document.Pages.Add(Pdfpage);
string strFilename = Path.GetFileNameWithoutExtension(strSourceFilepath);
strFilePath = strDestinationFilepath + "\\" + strFilename + ".pdf";
Document.Save(strFilePath);
Document.Close();
return strFilePath;