如何使用 IronPdfEngine

This article was translated from English: Does it need improvement?
Translated
View the article in English

IronPdfEngine 是一個 gRPC 伺服器,專門用於管理 IronPDF 的各種任務,包括創建、編輯和閱讀 PDF 文件。

開始使用 IronPDF

立即在您的專案中使用IronPDF,並享受免費試用。

第一步:
green arrow pointer


IronPdf Python 和 IronPdfEngine

IronPdf Python 不需要 IronPdfEngine 就能運行。 IronPdfEngine 只是使用 IronPdf 的一種選擇方式。 預設情況下,IronPDF for Python 不會使用 IronPdfEngine。

[{我(每個版本的 IronPdf for Python 都需要特定版本的 IronPdfEngine。不支持跨版本。 對於IronPDF for Python,所需的IronPdfEngine版本將始終匹配。 例如 IronPdf 2024.2.2 將使用 IronPdfEngine 2024.2.2)}]

IronPdf Python 與遠端 IronPdfEngine

假設 IronPdfEngine 在 123.456.7.8:33350 遠程運行。

請注意
若要遠端執行 IronPdfEngine,請參考如何拉取並執行 IronPdfEngine.

使用 pip 安裝 IronPdf:

pip install ironpdf

安裝 IronPDF 後,您只需要告訴 IronPDF IronPdfEngine 的位置(請確保地址可訪問,未被防火牆阻擋). 使用 IronPdfConnectionConfiguration 類來配置連接設置。 在您的應用程序的初始階段添加此代碼(或在調用任何 IronPDF 方法之前).

Installation.ConnectToIronPdfHost(
    IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"));
PYTHON

就是這麼簡單! 在此之後,您的應用程式將連接到遠端 IronPdfEngine。!