如何使用IronPdfEngine
IronPdfEngine 是一个 gRPC 服务器,旨在管理各种 IronPDF 操作,包括创建、写入、编辑和读取 PDF 文件。 作为一个独立的C# .NET应用程序,IronPdfEngine可以独立操作,执行时无需.NET运行时环境。
如何将 IronPdfEngine 用作远程服务器
- 安装 C# 库以使用 IronPdfEngine
- 从 NuGet 安装 IronPdf.slim 软件包
- 利用 IronPdfConnectionConfiguration 类配置连接设置
- 使用 IronPdfEngine 将 HTML 渲染为 PDF,其渲染器与 Chrome 浏览器相同
开始在您的项目中使用IronPDF,并立即获取免费试用。
查看 IronPDF 上 Nuget 用于快速安装和部署。它有超过800万次下载,正在使用C#改变PDF。
Install-Package IronPdf
考虑安装 IronPDF DLL 直接。下载并手动安装到您的项目或GAC表单中: IronPdf.zip
手动安装到你的项目中
下载DLLIronPdf .NET 和 IronPdfEngine
IronPdf .NET 不需要 IronPdfEngine 才能运行。 IronPdfEngine 只是使用 IronPdf 的一个可选方式。 默认情况下,IronPdf for .NET 不会使用 IronPdfEngine。
请注意
IronPdf .NET 与 Remote IronPdfEngine
IronPdf.slim nuget 包是使用带有远程 IronPdfEngine 的 IronPdf for .NET 所需的唯一软件包。
请注意
IronPdf
或 IronPdf.Linux
,您可以使用 IronPdf.slim
来减少应用程序的大小。假设IronPdfEngine在123.456.7.8:33350
远程运行。
[{i:(要远程运行 IronPdfEngine,请参阅"如何拉动和运行 IronPdfEngine.")}]
使用 NuGet 安装 IronPdf:
PM> Install-Package IronPdf
安装 "IronPdf.slim "后,你只需告诉 IronPdf IronPdfEngine 的位置(请确保可以访问该地址,而不是被防火墙阻挡). 使用 IronPdfConnectionConfiguration 类来配置连接设置。 将以下代码添加到您应用程序的初始阶段(或在调用任何 IronPdf 方法之前).
Installation.ConnectToIronPdfHost(IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"));
Installation.ConnectToIronPdfHost(IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"));
Installation.ConnectToIronPdfHost(IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"))
就这么简单! 在此之后,您的应用程序将连接到远程IronPdfEngine。!