本快速教程将指导您如何使用 C# REST API 将 JPG 转换为 PDF 格式。它分享了设置开发环境的详细信息、编写应用程序的步骤列表以及使用基于 .NET 的云 SDK 使用 C# Low Code API 将 JPEG 更改为 PDF 的示例代码。您将学习如何将单个或一系列图像转换为 PDF,其中每个图像都成为新创建的 PDF 中的一页。
先决条件
创建账户 API 凭证 将 JPG 导出为 PDF
下载 Aspose.PDF Cloud SDK for Dotnet to convert a JPEG file to PDF
使用上述 SDK 设置 C# 项目,将 JPEG 转换为 PDF
使用 C# REST 接口将 JPG 转换为 PDF 的步骤
- 使用 App key 和 Sid 配置 PdfApi 类对象,用于将 JPG 图像转换为 PDF
- 使用唯一名称将图像上传到云存储
- 为每个图像创建 ImageTemplate 对象
- 创建 ImageTemplate 对象列表
- 使用图像列表和 IsOCR 标志创建 ImageTemplatesRequest 对象
- 使用 PutImageInStorageToPdf() 方法将所有图像转换为 PDF
- 下载每页带图片的 PDF
这些步骤总结了如何使用 C# RESTful 服务将图像转换为 PDF。首先将单个或多个图像上传到云存储,为所有图像创建 ImageTemplate 类对象,并创建这些对象的列表。随后,使用上述 ImageTemplate 列表创建 ImageTemplatesRequest 请求,并调用 PutImageInStorageToPdf() 方法将图像转换为 PDF。
使用基于 C# .NET 的 API 将 JPG 转换为 PDF 文档的代码
using System; | |
using System.IO; | |
using Aspose.Pdf.Cloud.Sdk.Api; | |
using Aspose.Pdf.Cloud.Sdk.Model; | |
using System.Collections.Generic; | |
namespace Aspose.PDF.Cloud.Examples.Kb | |
{ | |
public class PdfTasks | |
{ | |
public static void ConvertJpgToPdf() | |
{ | |
// Create the PdfApi class object | |
PdfApi pdfApi = new PdfApi("App Key", "App Sid"); | |
try | |
{ | |
// Upload the images | |
pdfApi.UploadFile("input1.jpg", new MemoryStream(File.ReadAllBytes("input1.jpg"))); | |
pdfApi.UploadFile("input2.jpg", new MemoryStream(File.ReadAllBytes("input2.jpg"))); | |
// Create the ImageTemplate class objects | |
ImageTemplate imageTemplate1 = new ImageTemplate(ImagePath: "input1.jpg", ImageSrcType: ImageSrcType.Common); | |
ImageTemplate imageTemplate2 = new ImageTemplate(ImagePath: "input2.jpg", ImageSrcType: ImageSrcType.Common); | |
// Create the list of images | |
List<ImageTemplate> images = new List<ImageTemplate>() { imageTemplate1, imageTemplate2 }; | |
ImageTemplatesRequest request = new ImageTemplatesRequest(IsOCR:false, ImagesList:images); | |
// Convert images to PDF | |
var apiResponse = pdfApi.PutImageInStorageToPdf("output.pdf", request); | |
if (apiResponse != null && apiResponse.Status.Equals("OK")) | |
{ | |
// Download the output pdf file | |
Stream storageRes = pdfApi.DownloadFile("output.pdf"); | |
FileStream fileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write); | |
storageRes.CopyTo(fileStream); | |
} | |
} | |
catch (Exception ex) | |
{ | |
Console.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace); | |
} | |
} | |
} | |
} |
此代码演示了使用 C# Low Code API 开发图片到 PDF 转换器”的过程。要将单个图像转换为 PDF,您可以遵循相同的过程,但需要将特定图像上传到云存储并仅使用单个项目创建所需的列表。如果将 IsOCR 标志设置为 true,则可以将 OCRLangs 属性设置为string”。
本文教我们如何使用 C# RESTful Service 开发图片转 PDF 文件转换器。如果您想将图片连同其他内容一起插入现有页面,请按照 使用 C# REST API 将图像插入 PDF 上的文章操作。