为了更改地让读者理解内容,有时候需要给文档添加注释。本文将介绍如何使用spire.pdf为pdf文档添加高亮、附注和文本框注释。
高亮文本标记
c#
//初始化pdfdocument实例并加载现有文档
pdfdocument doc = new pdfdocument();
doc.loadfromfile("spire.pdf介绍.pdf");
//获取第一页
pdfpagebase page = doc.pages[0];
//获取文本
pdftextfind[] results = page.findtext("spire.pdf for .net").finds;
//创建注释,指定作者、注释文本、高亮颜色等信息
pdftextmarkupannotation annotation = new pdftextmarkupannotation("管理员", "成都冰蓝科技有限公司出品", results[0].searchtext, results[0].position, results[0].font);
annotation.border = new pdfannotationborder(0.2f);
annotation.textmarkupcolor = color.green;
//添加注释到pdf
page.annotationswidget.add(annotation);
//保存文档
doc.savetofile("高亮文本.pdf");
vb.net
'初始化pdfdocument实例并加载现有文档
dim doc as new pdfdocument()
doc.loadfromfile("spire.pdf介绍.pdf")
'获取第一页
dim page as pdfpagebase = doc.pages(0)
'获取文本
dim results as pdftextfind() = page.findtext("spire.pdf for .net").finds
'创建注释,指定作者、注释文本、高亮颜色等信息
dim annotation as new pdftextmarkupannotation("管理员", "成都冰蓝科技有限公司出品", results(0).searchtext, results(0).position, results(0).font)
annotation.border = new pdfannotationborder(0.2f)
annotation.textmarkupcolor = color.green
'添加注释到pdf
page.annotationswidget.add(annotation)
'保存文档
doc.savetofile("高亮文本.pdf")
弹出式附注
c#
//初始化pdfdocument实例并加载现有文档
pdfdocument doc = new pdfdocument();
doc.loadfromfile("spire.pdf介绍.pdf");
//获取第一页
pdfpagebase page = doc.pages[0];
//获取文本
pdftextfind[] results = page.findtext("acrobat").finds;
//指定注释的位置
float x = results[0].position.x - doc.pagesettings.margins.left results[0].size.width 5;
float y = results[0].position.y - doc.pagesettings.margins.top;
//创建弹出式附注
rectanglef rect = new rectanglef(x, y, 0, 0);
pdfpopupannotation popupannotation = new pdfpopupannotation(rect);
//指定附注的文本、图标及图标颜色
popupannotation.text = "adobe公司旗下产品,用于创建编辑pdf文档。";
popupannotation.icon = pdfpopupicon.note;
popupannotation.color = color.yellow;
//添加附注到pdf
page.annotationswidget.add(popupannotation);
//保存文档
doc.savetofile("弹出式附注.pdf");
vb.net
'初始化pdfdocument实例并加载现有文档
dim doc as new pdfdocument()
doc.loadfromfile("spire.pdf介绍.pdf")
'获取第一页
dim page as pdfpagebase = doc.pages(0)
'获取文本
dim results as pdftextfind() = page.findtext("acrobat").finds
'指定注释的位置
dim x as single = results(0).position.x - doc.pagesettings.margins.left results(0).size.width 5
dim y as single = results(0).position.y - doc.pagesettings.margins.top
'创建弹出式附注
dim rect as new rectanglef(x, y, 0, 0)
dim popupannotation as new pdfpopupannotation(rect)
'指定附注的文本、图标及图标颜色
popupannotation.text = "adobe公司旗下产品,用于创建编辑pdf文档。"
popupannotation.icon = pdfpopupicon.note
popupannotation.color = color.yellow
'添加附注到pdf
page.annotationswidget.add(popupannotation)
'保存文档
doc.savetofile("弹出式附注.pdf")
文本框注释
若文本框注释含有中日韩字体,在使用adobe打开该pdf时, 需要安装亚洲语言资源文件。
c#
//初始化pdfdocument实例并加载现有文档
pdfdocument doc = new pdfdocument();
doc.loadfromfile("spire.pdf介绍.pdf");
//获取第一页
pdfpagebase page = doc.pages[0];
//获取文本
pdftextfind[] results = page.findtext("acrobat").finds;
//指定文本框注释的位置
float x = results[0].position.x - doc.pagesettings.margins.left results[0].size.width 20;
float y = results[0].position.y - doc.pagesettings.margins.top;
//创建文本框注释
rectanglef rect = new rectanglef(x, y, 100, 15);
pdffreetextannotation textannotation = new pdffreetextannotation(rect);
//指定注释文字及字体,注释框边界颜色及背景色
textannotation.text = "什么是spire.pdf?";
pdftruetypefont font = new pdftruetypefont(new font("arial unicode ms", 10f), true);
textannotation.font = font;
pdfannotationborder border = new pdfannotationborder(0.5f);
textannotation.border = border;
textannotation.bordercolor = color.purple;
textannotation.color = color.yellow;
textannotation.opacity = 0.8f;
//添加注释到pdf
page.annotationswidget.add(textannotation);
//保存文档
doc.savetofile("文本框注释.pdf");
vb.net
'初始化pdfdocument实例并加载现有文档
dim doc as new pdfdocument()
doc.loadfromfile("spire.pdf介绍.pdf")
'获取第一页
dim page as pdfpagebase = doc.pages(0)
'获取文本
dim results as pdftextfind() = page.findtext("acrobat").finds
'指定文本框注释的位置
dim x as single = results(0).position.x - doc.pagesettings.margins.left results(0).size.width 20
dim y as single = results(0).position.y - doc.pagesettings.margins.top
'创建文本框注释
dim rect as new rectanglef(x, y, 100, 15)
dim textannotation as new pdffreetextannotation(rect)
'指定注释文字及字体,注释框边界颜色及背景色
textannotation.text = "什么是spire.pdf?"
dim font as new pdftruetypefont(new font("arial unicode ms", 10f), true)
textannotation.font = font
dim border as new pdfannotationborder(0.5f)
textannotation.border = border
textannotation.bordercolor = color.purple
textannotation.color = color.yellow
textannotation.opacity = 0.8f
'添加注释到pdf
page.annotationswidget.add(textannotation)
'保存文档
doc.savetofile("文本框注释.pdf")