如何使用 C# 在 PDF 中添加距离注释

本文将为您提供有关如何使用 C# 在 PDF 中添加距离注释的综合指南。距离注释有助于指示 PDF 文档中两点之间的距离,使它们在技术图纸、施工计划和其他需要精确测量的应用程序中很有用。我们将提供有关设置注释库的详细说明和代码示例,以在 C# 中向 PDF 插入距离注释。以下是使用 C# 编程语言向 PDF 文件添加距离注释的基本步骤。

使用 C# 在 PDF 中添加距离注释的步骤

  1. 要将距离注释合并到 PDF 中,请使用 NuGet 包管理器安装 GroupDocs.Annotation for .NET
  2. 添加 GroupDocs.Annotation 命名空间的引用
  3. 创建 Annotator 类的实例并将 PDF 文件的路径作为参数传递给其构造函数
  4. 创建 DistanceAnnotation 类的实例并设置一些属性,例如位置和页码
  5. 调用 Annotator.Add 方法并提供 DistanceAnnotation 对象作为参数
  6. 调用 Annotator.Save 方法将最终输出的 PDF 保存到磁盘

如果您遵循上述指南并在您的计算机上安装注释库,您可以毫不费力地使用 C# 在 PDF 中创建距离注释。只要安装了 .NET,就可以在流行的操作系统(例如 Windows、macOS 和 Linux)上执行这些说明。将距离注释合并到 PDF 文件中不需要额外的软件。此外,以下代码示例中使用的库是跨平台的。

使用 C# 在 PDF 中添加距离注释的代码

using GroupDocs.Annotation.Models.AnnotationModels;
using GroupDocs.Annotation.Models;
using GroupDocs.Annotation;
using System;
using System.Collections.Generic;
namespace AddDistanceAnnotationinPDFusingCSharp
{
internal class Program
{
static void Main(string[] args)
{
// Set License to avoid the limitations of Annotation library
License lic = new License();
lic.SetLicense(@"GroupDocs.Annotation.lic");
// Instantiate Annotator object by passing path of PDF
// file to its constructor
using (Annotator annotator = new Annotator("input.pdf"))
{
// Create an instance of DistanceAnnotation class
// and set some properties
DistanceAnnotation distance = new DistanceAnnotation
{
Box = new Rectangle(200, 150, 200, 30),
CreatedOn = DateTime.Now,
Message = "This is distance annotation",
Opacity = 0.7,
PageNumber = 0,
PenColor = 65535,
PenStyle = PenStyle.Dot,
PenWidth = 3,
Replies = new List<Reply>
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
// Add distance annotation to Annotator
annotator.Add(distance);
// Save the final PDF to disk
annotator.Save("result.pdf");
}
}
}
}

上一节提供了有关如何在 PDF C#* 中添加 *distance 注释的深入说明以及简单的代码示例。安装文档注释库并根据需要修改输入和输出文件路径后,您可以毫不费力地将代码集成到您的应用程序中。恭喜!您已经使用 C# 在 PDF 文件中成功实现了距离注释。

我们之前分享过一篇关于在PDF中添加椭圆注释的文章。如果您需要更多信息,请参阅 如何使用C#在PDF中添加椭圆注释 上的指南。

 简体中文