ASP.NET MVC Rotativa.ViewAsPdf 生成移动视图(我想要全尺寸)

ASP.NET MVC Rotativa.ViewAsPdf Generate Mobile View(I want Full Size)

我需要从视图生成 Pdf。 我正在使用 Rotativa,但总是生成移动大小(查看文件包括 bootsrap)。 如何在 Rotativa 中禁用调整大小。 我的密码是:

 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;

删除 bootstrap 或者您可以在要为其生成 pdf

的 cshtml 元素中为 bootstrap 提供 link 引用