CreateFreeText

PdfContentEditor.CreateFreeText method

在 PDF 文档中创建自由文本注释

public void CreateFreeText(Rectangle rect, string contents, int page)
范围类型描述
rectRectangle定义页面上注释位置的注释矩形。
contentsString注释的内容。
pageInt32将在其中创建文本注释的原始页数。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreateFreeText(new System.Drawing.Rectangle(0, 0, 100, 100), "Welcome to Aspose", 1);
editor.Save("example_out.pdf");

也可以看看