C#如何给PDF文档添加注释

使用C#语言添加PDF注释当中,须要使用到Spire.PDF for .NET。能够在官网上下载免费版(https://www.e-iceblue.cn/Downloads/Free-Spire-PDF-NET.html)。html

注意,须要添加dll文件到程序中,而且也要添加using 指令编程

1.给文本添加注释编程语言

主要代码以下:code

PdfDocument doc = new PdfDocument();
PdfPageBase page = doc.Pages.Add();

PdfFont font = new PdfFont(PdfFontFamily.Helvetica, 13);
string text = "HelloWorld";
PointF point = new PointF(200, 100);
page.Canvas.DrawString(text, font, PdfBrushes.Red, point);

PdfTextMarkupAnnotation annotation1 = new PdfTextMarkupAnnotation("管理员", "通常来讲,这是每一种计算机编程语言中最基本、最简单的程序", text, new PointF(0, 0), font);
annotation1.Border = new PdfAnnotationBorder(0.75f);
annotation1.TextMarkupColor = Color.Green;
annotation1.Location = new PointF(point.X + doc.PageSettings.Margins.Left, point.Y + doc.PageSettings.Margins.Left);

(page as PdfNewPage).Annotations.Add(annotation1);
doc.SaveToFile("result.pdf");

效果示例:orm

 

2.添加自由文本注释htm

PdfDocument doc = new PdfDocument();
PdfPageBase page = doc.Pages.Add();

RectangleF rect = new RectangleF(0, 40, 150, 50);
PdfFreeTextAnnotation textAnnotation = new PdfFreeTextAnnotation(rect);
textAnnotation.Text = "Free text annotation ";

PdfFont font = new PdfFont(PdfFontFamily.TimesRoman, 10);
PdfAnnotationBorder border = new PdfAnnotationBorder(1f);
textAnnotation.Font = font;
textAnnotation.Border = border;
textAnnotation.BorderColor = Color. Purple;
textAnnotation.LineEndingStyle = PdfLineEndingStyle.Circle;

textAnnotation.Color = Color. Pink;
textAnnotation.Opacity = 0.8f;

page.AnnotationsWidget.Add(textAnnotation); 

doc.SaveToFile("FreeTextAnnotation.pdf", FileFormat.PDF);
System.Diagnostics.Process.Start("FreeTextAnnotation.pdf");

效果示例:ci

本文为转载文章,详细信息能够查看原文。get

相关文章
相关标签/搜索