PdfSharp显示不完整的数据

时间:2015-05-26 11:25:26

标签: c# pdf

我正在使用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;

0 个答案:

没有答案