如何在 Azure 上使用 .NET 运行 HTML 至 PDF?
是的。 IronPDF可用于在Azure上生成、操作和读取PDF文档。 IronPDF已在多个Azure平台上进行了彻底测试,包括MVC网站、Azure Functions等等。
Azure Functions 在 Docker 上
如果您在 Docker 容器中运行 Azure Functions,请参考本教程instead.
如何在 Azure 函数中制作 PDF 生成器
- 安装 C# 库在 Azure 中生成 PDF
- 选择 "Azure 基本 B1 "或以上托管层级
- 取消选中
从软件包文件运行
选项时 - 按照建议的配置说明进行配置
- 使用代码示例创建使用 Azure 的 PDF 生成器
教程
设置项目
安装 IronPDF 以开始使用
首先是通过 NuGet 安装 IronPDF:
- 在基于Windows的Azure Functions上使用
IronPdf
包 - https://www.nuget.org/packages/IronPdf/ - 在基于Linux的Azure Functions上使用
IronPdf.Linux
包 - https://www.nuget.org/packages/IronPdf.Linux/
Install-Package IronPdf
或者,使用直接下载link.
选择正确的 Azure 选项
选择正确的托管级别 Azure 层级
Azure Basic B1 是满足我们最终用户渲染需求的最低托管级别。 如果您正在创建一个高吞吐量的系统,可能需要对其进行升级。
在继续之前
"从包文件运行"复选框
在发布您的 Azure Functions 应用程序时,请确保不要选择 Run from package file
。
针对 .NET 6 的配置
Microsoft最近从.NET 6+中删除了成像库,破坏了许多遗留API。因此,有必要配置您的项目以便仍然允许这些遗留API调用。
- 在Linux上,设置
Installation.LinuxAndDockerDependenciesAutoConfig=true;
以确保机器上安装了libgdiplus
。 - 将以下内容添加到您的 .NET 6 项目的.csproj 文件中:
真 ` - 在您的项目中创建一个名为
runtimeconfig.template.json
的文件,并用以下内容填充:
{
"configProperties": {
"System.Drawing.EnableUnixSupport": true
}
}
{
"configProperties": {
"System.Drawing.EnableUnixSupport": true
}
}
If True Then
"configProperties":
If True Then
"System.Drawing.EnableUnixSupport": True
End If
End If
- 最后,在程序开头添加以下一行:System.AppContext.SetSwitch("System.Drawing.EnableUnixSupport", true);`
使用 Docker 在 Azure 上
使用 IronPDF 应用程序和函数可以通过 Docker 容器来实现控制权,SVG 字体访问和在 Azure 上控制性能的一种方法。
我们拥有全面的IronPDF Azure Docker 教程Linux 和 Windows 实例,推荐阅读。
Azure函数代码示例
此示例会自动将日志条目输出到内置的Azure日志记录器(见 ILogger log
):
[FunctionName("PrintPdf")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log, ExecutionContext context)
{
log.LogInformation("Entered PrintPdf API function...");
// Apply license key
IronPdf.License.LicenseKey = "IRONPDF-MYLICENSE-KEY-1EF01";
// Enable log
IronPdf.Logging.Logger.LoggingMode = IronPdf.Logging.Logger.LoggingModes.Custom;
IronPdf.Logging.Logger.CustomLogger = log;
IronPdf.Logging.Logger.EnableDebugging = false;
// Configure IronPdf
Installation.LinuxAndDockerDependenciesAutoConfig = false;
Installation.ChromeGpuMode = IronPdf.Engines.Chrome.ChromeGpuModes.Disabled;
try
{
log.LogInformation("About to render pdf...");
ChromePdfRenderer renderer = new ChromePdfRenderer();
// Render PDF
var pdf = renderer.RenderUrlAsPdf("https://www.google.com/");
log.LogInformation("finished rendering pdf...");
return new FileContentResult(pdf.BinaryData, "application/pdf") { FileDownloadName = "google.pdf" };
}
catch (Exception e)
{
log.LogError(e, "Error while rendering pdf", e);
}
return new OkObjectResult("OK");
}
[FunctionName("PrintPdf")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log, ExecutionContext context)
{
log.LogInformation("Entered PrintPdf API function...");
// Apply license key
IronPdf.License.LicenseKey = "IRONPDF-MYLICENSE-KEY-1EF01";
// Enable log
IronPdf.Logging.Logger.LoggingMode = IronPdf.Logging.Logger.LoggingModes.Custom;
IronPdf.Logging.Logger.CustomLogger = log;
IronPdf.Logging.Logger.EnableDebugging = false;
// Configure IronPdf
Installation.LinuxAndDockerDependenciesAutoConfig = false;
Installation.ChromeGpuMode = IronPdf.Engines.Chrome.ChromeGpuModes.Disabled;
try
{
log.LogInformation("About to render pdf...");
ChromePdfRenderer renderer = new ChromePdfRenderer();
// Render PDF
var pdf = renderer.RenderUrlAsPdf("https://www.google.com/");
log.LogInformation("finished rendering pdf...");
return new FileContentResult(pdf.BinaryData, "application/pdf") { FileDownloadName = "google.pdf" };
}
catch (Exception e)
{
log.LogError(e, "Error while rendering pdf", e);
}
return new OkObjectResult("OK");
}
IRON VB CONVERTER ERROR developers@ironsoftware.com
已知问题
SVG字体渲染在共享主机计划中不可用。
我们发现的一个限制是Azure 托管平台不支持在其较便宜的共享Web应用层中加载SVG字体(例如Google Fonts)的服务器。 这是因为出于安全原因,这些共享托管平台不允许访问Windows GDI+图形对象。
我们建议使用一个Windows 或 Linux Docker 容器或 Azure 上的 VPS,以解决需要最佳字体渲染的问题。
Azure 免费层托管速度慢
Azure 免费和共享层,以及消费计划,不适合用于 PDF 渲染。 我们推荐使用Azure B1托管/高级计划,这也是我们自己使用的方案。 将HTML转为PDF
的过程对任何计算机来说都是一项重要的'工作' - 类似于在自己的机器上打开和渲染网页。使用了真正的浏览器引擎,因此我们需要相应地做好准备,并期望与具有相似性能的桌面机器有相似的渲染时间。
创建工程支持请求工单
为了创建请求票务,请参考 '如何提出IronPDF的工程支持请求'指南