DeleteStamp

PdfContentEditor.DeleteStamp method

按印章索引删除指定页面上的多个印章。

public void DeleteStamp(int pageNumber, int[] index)
范围类型描述
pageNumberInt32将删除印章的页码。
indexInt32[]邮票索引。

例子

PdfContentEditor contentEditor = new PdfContentEditor();
contentEditor.BindPdf("file.pdf");
contentEditor.DeleteStamp(1, new int[] { 2, 3, 5} );
contentEditor.Save("outfile.pdf");

也可以看看