使用 NET REST API 创建 PDF 文档

本教程帮助您了解如何使用 NET REST API 创建 PDF 文档。您将学习通过创建新的 PDF 文件并向其中添加一些文本,使用 C# 低代码 API 来开发 PDF 创建器。提供了使用此功能的详细步骤和示例代码。

先决条件

使用 C# REST API 制作 PDF 的步骤

  1. 设置 API 的客户端 ID 和客户端密钥
  2. 使用客户端凭据创建 PdfApi 类的实例
  3. 使用 PutCreateDocument API 调用创建新的 PDF 文件
  4. 创建一个段落并使用 Segment 和 TextLine 类在其中设置一些文本
  5. 使用 PutAddText 方法将段落添加到第一页上新创建的 PDF 文件中
  6. 下载最终的 PDF 文件并将其保存到流中
  7. 将输出的 PDF 文件保存在本地磁盘上

使用 C# 低代码 API 的 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 CreatePDF()
{
try
{
PdfApi pdfApi = new PdfApi("Client ID", "Client Secret");
DocumentResponse response = pdfApi.PutCreateDocument("newPdfFile");
if (response != null && response.Status.Equals("OK"))
{
Paragraph para = PrepareParagraph("This is first text for new PDF");
pdfApi.PutAddText("newPdfFile", 1, para);
var stream = pdfApi.DownloadFile("newPdfFile", null, null);
using (var fileStream = File.Create("output.pdf"))
{
stream.Seek(0, SeekOrigin.Begin);
stream.CopyTo(fileStream);
}
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine("error:" + ex.Message + "\n" + ex.StackTrace);
}
}
private static Paragraph PrepareParagraph(string text)
{
List<TextLine> textLines = new List<TextLine>();
Segment segment = new Segment(Value: text);
List<Segment> segments = new List<Segment>();
segments.Add(segment);
TextLine textLine = new TextLine(Segments: segments);
textLines.Add(textLine);
Rectangle rectangle = new Rectangle(50.0, 800, 300.0, 850);
Paragraph paragraph = new Paragraph(Lines: textLines, Rectangle: rectangle);
return paragraph;
}
}
}

此代码片段使您能够使用 C# 低代码 API 在线创建 PDF 文档。您可以在 Aspose.PDF REST API SDK 的帮助下提供文件名和其中包含一些文本的段落。最后,下载带有指定文本的输出 PDF 文件并将其保存在本地。

在支持此 SDK 的任何环境中,将上述 PDF 生成器与任何无代码或低代码应用程序一起使用。

以下主题介绍了将 PDF 文件转换为 Word 文档的功能,该功能也很有帮助:使用 NET REST API 将 PDF 转换为 DOC

 简体中文