0
我需要從視圖生成PDF。 我正在使用Rotativa,但始終生成移動大小(查看文件包括bootsrap)。 如何禁用Rotativa中的調整大小。 我的代碼是:ASP.NET MVC Rotativa.ViewAsPdf生成移動視圖(我想要全尺寸)
ViewAsPdf pdf = new ViewAsPdf("DownloadViewPDF", property)
{
FileName = "Angel" + ".pdf",
PageOrientation = Orientation.Landscape,
PageMargins = new Margins(0, 0, 0, 0),
PageSize = Rotativa.Options.Size.A4,
CustomSwitches = "--disable-smart-shrinking"
};
return pdf;