CSHTML到PDF (MVC Core)
该代码示例演示了将视图转换为PDF的过程。
两个软件包 IronPdf.Extensions.Mvc.Core 和 IronPdf 协同工作,以实现将视图渲染为 PDF。 IronPdf.Extensions.Mvc.Core 包是 IronPdf 的扩展,能够将视图渲染为 PDF。
Use the RenderRazorViewToPdf method to render Views to PDFs. This method requires an IRazorViewRenderer, the path to the ".cshtml" file, and the data required to display on the ".cshtml" file. Please visit the How to Convert View to PDF in ASP.NET Core MVC how-to article to learn more.
This action also enables you to access the full range of features provided by the RenderingOptions class, such as applying page numbers in PDFs with IronPDF, adding text and HTML headers and footers with IronPDF, and customizing PDF paper size. The resulting PDF document can be further edited or exported as needed.
如何在 ASP.NET MVC Core 中将 CSHTML 文件转换为 PDF
- 安装用 C# 将 CSHTML 文件转换为 PDF 的 C# 库。
- 实例化 `ChromePdfRenderer` 类
- 使用 `RenderRazorViewToPdf` 方法呈现
- 向方法传递 `IRazorViewRenderer` 对象和 CSHTML 文件路径
- 将生成的 PDF 文档下载到桌面

