欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

利用C#如何给PDF文档添加文本与图片页眉

程序员文章站 2022-03-14 18:16:20
前言 下面这篇文章向大家分享如何使用了免费组件free spire.pdf给pdf文档添加文本和图片页眉。这个组件提供了一些方法,可以帮助我们快速方便地实现此目的。 添...

前言

下面这篇文章向大家分享如何使用了免费组件free spire.pdf给pdf文档添加文本和图片页眉。这个组件提供了一些方法,可以帮助我们快速方便地实现此目的。

添加页眉步骤:

首先,创建一个visual c#控制台项目,添加组件引用并使用以下命名空间。

using system;
using system.drawing;
using spire.pdf;
using spire.pdf.graphics;

在下列代码中,我们先定义一个setdocumenttemplate()方法来创建一个pdf文档模板,这个模板只包含文本和图片页眉。然后,调用drawstring(string s, pdffontbase font, pdfbrush brush, float x, float y, pdfstringformat format)方法和drawimage(pdfimage image, float x, float y, float width, float height)方法,插入自定义的文本和图片页眉。

static void setdocumenttemplate(pdfdocument doc, sizef pagesize, pdfmargins margin)
{
 //创建pdf模板
 pdfpagetemplateelement topspace = new pdfpagetemplateelement(pagesize.width, margin.top);
 topspace.foreground = true;
 doc.template.top = topspace;
 //添加文本页眉
 pdftruetypefont font1 = new pdftruetypefont(new font("宋体", 15f), true);
 pdfstringformat format = new pdfstringformat(pdftextalignment.right);
 string text = "pdf文本页眉";
 float y = 0;
 float x = pdfpagesize.a4.width;
 topspace.graphics.drawstring(text, font1, pdfbrushes.palevioletred, x, y, format); 
 //添加图片页眉
 pdfimage headerimage = pdfimage.fromfile(@"logo.png");
 float width = headerimage.width;
 float height = headerimage.height;
 pointf pagelefttop = new pointf(0 , 0);
 topspace.graphics.drawimage(headerimage,0,0,width/2,height/2); 
}

接下来再创建一个pdf文档,主函数内调用setdocumenttemplate()方法将带有文本和图片页眉的模板应用到新建的pdf文档中。

具体步骤:

第一步:创建一个pdf文档对象。

pdfdocument doc = new pdfdocument();

第二步:设置页边距。

pdfunitconvertor unitcvtr = new pdfunitconvertor();
pdfmargins margin = new pdfmargins();
margin.top = unitcvtr.convertunits(2.54f, pdfgraphicsunit.centimeter, pdfgraphicsunit.point);
margin.bottom = margin.top;
margin.left = unitcvtr.convertunits(4.17f, pdfgraphicsunit.centimeter, pdfgraphicsunit.point);
margin.right = margin.left;

第三步:pdf文档中应用模板。

setdocumenttemplate(doc, pdfpagesize.a4, margin);

第四步:pdf文档添加页面。

pdfpagebase page = doc.pages.add();
doc.pages.add();

第五步:保存并打开文档。

doc.savetofile("页眉.pdf");
system.diagnostics.process.start("页眉.pdf");

添加页眉后的效果图:

利用C#如何给PDF文档添加文本与图片页眉

全部代码:

using system;
using spire.pdf;
using system.drawing;
using spire.pdf.graphics;

namespace pdf添加页眉
{
 class program
 {
 static void main(string[] args)
 {
 pdfdocument doc = new pdfdocument();

 pdfunitconvertor unitcvtr = new pdfunitconvertor();
 pdfmargins margin = new pdfmargins();
 margin.top = unitcvtr.convertunits(2.54f, pdfgraphicsunit.centimeter, pdfgraphicsunit.point);
 margin.bottom = margin.top;
 margin.left = unitcvtr.convertunits(4.17f, pdfgraphicsunit.centimeter, pdfgraphicsunit.point);
 margin.right = margin.left;

 setdocumenttemplate(doc, pdfpagesize.a4, margin);
 pdfpagebase page = doc.pages.add();
 doc.pages.add();

 doc.savetofile("页眉.pdf");
 system.diagnostics.process.start("页眉.pdf");
 }

 static void setdocumenttemplate(pdfdocument doc, sizef pagesize, pdfmargins margin)
 {
 pdfpagetemplateelement topspace = new pdfpagetemplateelement(pagesize.width, margin.top);
 topspace.foreground = true;
 doc.template.top = topspace;
 
 pdftruetypefont font1 = new pdftruetypefont(new font("宋体", 15f), true);
 pdfstringformat format = new pdfstringformat(pdftextalignment.right);
 string text = "pdf文本页眉";
 float y = 0;
 float x = pdfpagesize.a4.width;
 topspace.graphics.drawstring(text, font1, pdfbrushes.palevioletred, x, y, format);
 
 pdfimage headerimage = pdfimage.fromfile(@"c:\users\administrator\pictures\under_construction.jpg");
 float width = headerimage.width;
 float height = headerimage.height;
 pointf pagelefttop = new pointf(0, 0);
 topspace.graphics.drawimage(headerimage, 0, 0, width / 2, height / 2);
 }
 }
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用c#能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。