本分步教程向您展示如何在云中使用 C# REST API**将 PDF 转换为 PNG。为了将 PDF 导出为 PNG 格式,我们使用 Aspose.PDF for C# Cloud SDK。如果您需要在 C# 低代码 API 中将 PDF 转换为 PNG,则可以借助以下步骤和代码片段来执行此操作。
先决条件
- 开立账户 API 凭证
- 获取 Aspose.PDF Cloud SDK for Dotnet
- 使用上述SDK设置C#项目
在 C# REST API 中将 PDF 转换为 PNG 的步骤
- 配置 API 的客户端 ID 和客户端密钥
- 使用具有客户端凭据的 PdfApi 类实例
- 指定源 PDF 和输出 PNG 文件名
- 加载源 PDF 文件并将其上传到云存储
- 使用 PutPageConvertToPng 方法使用 REST API 将 PDF 转换为 PNG
- 将转换后的PNG文件保存到本地磁盘
C# 低代码 API 中的 PDF 到 PNG 转换代码
using System; | |
using System.IO; | |
using Aspose.Pdf.Cloud.Sdk.Api; | |
namespace Aspose.PDF.Cloud.Examples.Kb | |
{ | |
public class PdfToPng | |
{ | |
public static void ConvertPdfToPng() | |
{ | |
try | |
{ | |
PdfApi pdfApi = new PdfApi("apiKey", "apiSid"); | |
string localPath = @"C:\Words\"; | |
string srcFileName = "Sample.pdf"; | |
string outputFile = "PDFtoPng.png"; | |
// Upload source pdf file to the cloud storage | |
pdfApi.UploadFile(srcFileName, File.Open(localPath + srcFileName, FileMode.Open)); | |
int pageNum = 1; | |
pdfApi.PutPageConvertToJpeg(srcFileName, pageNum, outputFile, null, null, null, null, null); | |
// Download the output PNG image file from Cloud Storage | |
var stream = pdfApi.DownloadFile(outputFile, null, null); | |
using (var fileStream = File.Create(localPath + outputFile)) | |
{ | |
stream.Seek(0, SeekOrigin.Begin); | |
stream.CopyTo(fileStream); | |
} | |
} | |
catch (Exception ex) | |
{ | |
System.Diagnostics.Debug.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace); | |
} | |
} | |
} | |
} |
上面的示例代码可让您使用 C# REST API 将 PDF 转换为 PNG。您只需借助适用于 C# 的 Aspose.PDF REST API SDK 提供源 PDF 文件,并使用在线 Aspose 转换 API 下载转换后的 PNG 文件以将其保存在本地。
上述 PDF 到 PNG 转换可以在 Windows、Linux 或 Mac 上的任何无代码或低代码应用程序中引用。
如果您有兴趣了解 PDF 到 JPEG 图像转换,请参阅有关如何使用 C# REST API 将 PDF 转换为 JPEG的文章。