如何使用System.IO.File.WriteAllBytes从字节数组中设置动态生成PDF的边距

时间:2014-09-11 06:44:16

标签: c# pdf-generation

Iam通过将一个字节数组写入文件来动态生成PDF报告,我需要控制生成的边距的大小。我想在不使用任何第三方dll的情况下完成此操作,请告诉我如何继续

这是我的代码

byte[] bytes = reportViewer.LocalReport.Render("PDF", null, out mimeType, out encoding, out extension, out streamIds, out warnings);

string path = ReportPath +@"ErroReports";
System.IO.File.WriteAllBytes(path+@"ErrorReport"+DateTime.Now.ToLongDateString()+ ".pdf", bytes);

我已经搜索了这个,但我只看到有关使用第三方dll的建议,我只需要知道是否可以更改该字节数组来设置边距

0 个答案:

没有答案