C#写PDF文件类库PDF File Writer介绍
.NET平台开源项目速览(16)C#写PDF文件类库PDF File Writer介绍
1年前,我在文章:这些.NET开源项目你知道吗?.NET平台开源文档与报表处理组件集合(三)中(第9个项目),给大家推荐了一个开源免费的PDF读写组件 PDFSharp,PDFSharp我2年前就看过,用过简单的例子,不过代码没有写成专门的文章。最近在查找资料的时候,又发现一款小巧的写PDF文件的C#组件:PDF File Writer。该开源组件是在codeproject,还没有托管到其他地方,所以花了点时间了解了一下,分享给大家。
.NET开源目录:【目录】本博客其他.NET开源项目文章目录
本文原文地址:http://www.cnblogs.com/asxinyu/p/dotnet_Opensource_project_PdfFileWriter.html
1.PDF File Writer基本介绍
1.1 支持的常用功能
PDF File Writer组件可以在.NET应用程序中直接创建PDF格式的文件。最低的开发环境是.NET 4.0 + VS 2013。我们来看看该组件支持的PDF的一些功能:
图形:支持画线、矩形、多边形、贝塞尔曲线,前景和背景颜色,模式和阴影。
图片:支持位图图像和矢量图像
文本:支持行文本和列文本
条形码:支持条形码:Barcode 128, Barcode 39, Barcode interleaved 2 of 5等
二维码:支持二维条码
加密:支持AES-128加密算法
Web链接:支持Web超链接
书签:支持文档大纲
图表:支持微软的图表,支持数据表格,支持声音,视频播放;
1.2 使用PDF File Writer创建PDF的步骤
使用PDF File Writer在程序中创建一个PDF文件的主要步骤如下:
Step 1: 创建PdfDocument文件对象
Step 2: 创建资源对象,如文字(PdfFont),图像(PdfImage)等
Step 3: 创建文件页对象PdfPage
Step 4: 创建内容对象PdfContents
Step 5: 在内容对象上添加文字,或者图像等内容
重复3, 4 ,5 创建其他页
Step 6: 使用PdfDocument对象的CreateFile方法创建PDF文
1.3 PDF File Writer创建的PDF文件效果预览
看看使用PDF File Writer创建的PDF的效果,非常不错。这也是我偶尔碰到非常震撼,拿过来分享的重要原因。


2.一个简单的使用案例
我们根据官方提供的例子,可以快速入门,一起来看看基本代码。
2.1 先创建基本对象
|
1
2
3
4
5
6
7
8
9
10
|
private PdfFont ArialNormal;private PdfFont ArialBold;private PdfFont ArialItalic;private PdfFont ArialBoldItalic;private PdfFont TimesNormal;private PdfFont Comic;private PdfTilingPattern WaterMark;private PdfDocument Document;private PdfPage Page;private PdfContents Contents; |
然后创建空白文档
|
1
2
3
4
5
6
7
8
9
10
|
// Step 1:创建空文档,文档参数有类型,可以使用枚举进行选择,和返回的文件名称Document = new PdfDocument(PaperType.Letter, false, UnitOfMeasure.Inch, FileName);//加密测试例子//Document.SetEncryption(null, null, Permission.All & ~Permission.Print, EncryptionType.Aes128);//创建PDF文件信息目录PdfInfo Info = PdfInfo.CreatePdfInfo(Document);Info.Title("Article Example");Info.Author("Uzi Granot Granotech Limited");Info.Keywords("PDF, .NET, C#, Library, Document Creator");Info.Subject("PDF File Writer C# Class Library (Version 1.14.1)"); |
2.2 创建字体等资源
|
1
2
3
4
5
6
7
8
9
10
|
//定义不同的字体类型,如下所示String FontName1 = "Arial";String FontName2 = "Times New Roman";ArialNormal = PdfFont.CreatePdfFont(Document, FontName1, FontStyle.Regular, true);ArialBold = PdfFont.CreatePdfFont(Document, FontName1, FontStyle.Bold, true);ArialItalic = PdfFont.CreatePdfFont(Document, FontName1, FontStyle.Italic, true);ArialBoldItalic = PdfFont.CreatePdfFont(Document, FontName1, FontStyle.Bold | FontStyle.Italic, true);TimesNormal = PdfFont.CreatePdfFont(Document, FontName2, FontStyle.Regular, true);Comic = PdfFont.CreatePdfFont(Document, "Comic Sans MS", FontStyle.Bold, true); |
2.3 创建文字示例
|
1
2
3
4
5
6
7
8
9
|
Contents.DrawText(Comic, 40.0, 4.25, 9.25, TextJustify.Center, 0.02, Color.FromArgb(128, 0, 255), Color.FromArgb(255, 0, 128), "PDF FILE WRITER");Contents.SaveGraphicsState();Contents.SetColorNonStroking(Color.Purple);Contents.DrawText(Comic, 30.0, 4.25, 8.75, TextJustify.Center, "Example");Contents.RestoreGraphicsState();//Step 3:添加新页面Page = new PdfPage(Document);//Step 4:添加内容到页面Contents = new PdfContents(Page); |
2.4 绘制条形码
|
1
2
3
4
5
6
7
8
9
|
Contents.SaveGraphicsState();BarcodeEAN13 Barcode1 = new BarcodeEAN13("1234567890128");Contents.DrawBarcode(1.3, 7.05, 0.012, 0.75, Barcode1, ArialNormal, 8.0);PdfQRCode QRCode = new PdfQRCode(Document, "http://www.codeproject.com/Articles/570682/PDF-File-Writer-Csharp-Class-Library-Version", ErrorCorrection.M);Contents.DrawQRCode(QRCode, 6.0, 6.8, 1.2);// 添加链接Page.AddWebLink(6.0, 6.8, 7.2, 8.0, "http://www.codeproject.com/Articles/570682/PDF-File-Writer-Csharp-Class-Library-Version");//保存Contents.RestoreGraphicsState(); |
2.5 绘制图表
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
Contents.SaveGraphicsState();//创建MS Chart图表Chart PieChart = PdfChart.CreateChart(Document, 1.8, 1.5, 300.0);PdfImageControl ImageControl = new PdfImageControl();ImageControl.SaveAs = SaveImageAs.IndexedImage;PdfChart PiePdfChart = new PdfChart(Document, PieChart, ImageControl);PieChart.AntiAliasing = AntiAliasingStyles.None; //设置颜色PieChart.BackColor = Color.FromArgb(220, 220, 255);PieChart.Palette = ChartColorPalette.BrightPastel;//默认字体Font DefaultFont = PiePdfChart.CreateFont("Verdana", FontStyle.Regular, 0.05, FontSizeUnit.UserUnit);Font TitleFont = PiePdfChart.CreateFont("Verdana", FontStyle.Bold, 0.07, FontSizeUnit.UserUnit);// 设置标题Title Title1 = new Title("Pie Chart Example", Docking.Top, TitleFont, Color.Purple);PieChart.Titles.Add(Title1);//图例Legend Legend1 = new Legend();PieChart.Legends.Add(Legend1);Legend1.BackColor = Color.FromArgb(230, 230, 255);Legend1.Docking = Docking.Bottom;Legend1.Font = DefaultFont;// 图表区域ChartArea ChartArea1 = new ChartArea();PieChart.ChartAreas.Add(ChartArea1);ChartArea1.BackColor = Color.FromArgb(255, 200, 255);Series Series1 = new Series();PieChart.Series.Add(Series1);Series1.ChartType = SeriesChartType.Pie;Series1.Font = DefaultFont;Series1.IsValueShownAsLabel = true;Series1.LabelFormat = "{0} %";Series1.Points.Add(22.0);Series1.Points[0].LegendText = "Apple";Series1.Points.Add(27.0);Series1.Points[1].LegendText = "Banana";Series1.Points.Add(33.0);Series1.Points[2].LegendText = "Orange";Series1.Points.Add(18.0);Series1.Points[3].LegendText = "Grape";Contents.DrawChart(PiePdfChart, 5.6, 5.0);// 保存Contents.RestoreGraphicsState(); |
2.6 生成PDF
|
1
2
3
4
5
6
|
// Step 6:创建PDFDocument.CreateFile();//打开PDF文件Process Proc = new Process();Proc.StartInfo = new ProcessStartInfo(FileName);Proc.Start(); |
3.资源
1.Codeproject文章连接:http://www.codeproject.com/Articles/570682/PDF-File-Writer-Csharp-Class-Library-Version
2.PDF File Writer DLL下载:PdfFileWriter_dll.zip
3.PDF File Writer 帮助文档:PdfFileWriterCHM.rar
4.PDF File Writer源代码与Demo:PdfFileWriter-Code.rar
注意:源代码中的相关素材进行了精简,否则文件比较大,长传比较大。如果有需求可以去文章链接原文下载,或者单独留下邮箱,我有空发送一下。
C#写PDF文件类库PDF File Writer介绍的更多相关文章
- .NET平台开源项目速览(16)C#写PDF文件类库PDF File Writer介绍
1年前,我在文章:这些.NET开源项目你知道吗?.NET平台开源文档与报表处理组件集合(三)中(第9个项目),给大家推荐了一个开源免费的PDF读写组件 PDFSharp,PDFSharp我2年前就看过 ...
- 【使用Itext处理PDF文档(新建PDF文件、修改PDF文件、PDF中插入图片、将PDF文件转换为图片)】
iText简介 iText是著名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库.通过iText不仅可以生成PDF或rtf的文档,而且可以将XML.Html文件转 ...
- Pdf File Writer 中文应用(PDF文件编写器C#类库)
该文由小居工作室(QQ:2482052910) 翻译并提供解答支持,原文地址:Pdf File Writer 中文应用(PDF文件编写器C#类库):http://www.cnblogs.com/ ...
- PDF 文件编写器 C# 类库(版本 1.28.0)使用详解
PDF File Writer 是一个 C# .NET 类库,允许应用程序创建 PDF 文件. PDF File Writer C# 类库使 .NET 应用程序能够生成 PDF 文档.该库使应用程序免 ...
- C# Parsing 类实现的 PDF 文件分析器
下载示例 下载源代码 1. 介绍 这个项目让你可以去读取并解析一个PDF文件,并将其内部结构展示出来. PDF文件的格式标准文档可以从Adobe那儿获取到. 这个项目基于“PDF指南,第六版,Adob ...
- 用C#制作PDF文件全攻略
用C#制作PDF文件全攻略 目 录 前 言... 3 第一部分 iText的简单应用... 4 第一章 创建一个Document 4 第一步 创建一个Document实例:... 5 第二步 ...
- C# 给PDF文件添加水印
水印种类及功能介绍 PDF水印分为两种:文本水印和图片水印.文本水印一般被用在商业领域,提醒读者该文档是受版权保护的,其他人不能抄袭或者免费使用.除了这个特征,水印还可以用来标记这个文档 的一些基 ...
- 转:MVC2表单验证失败后,直接返回View,已填写的内容就会清空,可以这样做;MVC2输出文本;MVC2输出PDF文件
ViewData.ModelState.AddModelError("FormValidator", message); foreach (string field in Requ ...
- pdf文件之itextpdf操作实例
需求分析 1.需要创建一个pdf文件,包含文件的基本属性 2.文件需要包含附件,通过点击链接直接打开 3.生成的pdf文件不能直接修改(需要输入密码) 4.pdf文件需要有文字或图片水印 准备jar包 ...
随机推荐
- Android API 中文(76)——AdapterView.OnItemLongClickListener
前言 本章内容是android.widget.AdapterView.OnItemLongClickListener,版本为Android 2.3 r1,翻译来自"cnmahj", ...
- Sass入门——基本特性-基础
本文来自慕课网大漠 声明变量 三个部分:1.声明变量的符号"$"2.变量名称3.赋予变量的值 $brand-primary : darken(#428bca, 6.5%) !def ...
- ASP.NET 母版页和内容页的加载顺序
Master 模板页Content 内容页如果希望Master页面的数据传给Content页面,请Init如果希望Content页面的数据传给Master页面,请重载Load具体细节不多说了,看下面页 ...
- hibernate的常用配置
hibernate.cfg.xml的一些相关配置 <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Co ...
- Struts2详解
struts2框架是SSH框架集中的框架之一,是一个基于MVC设计模式的Web应用框架,它本质上相当于一个servlet,在MVC设计模式中,Struts2作为控制器层(Controller)来建立 ...
- hibernate HQL查询 2.2
hql(都要在事务中完成)session.beginTransaction();session.getTransaction().commit(); session.beginTransaction( ...
- BZOJ 1607: [Usaco2008 Dec]Patting Heads 轻拍牛头
1607: [Usaco2008 Dec]Patting Heads 轻拍牛头 Description 今天是贝茜的生日,为了庆祝自己的生日,贝茜邀你来玩一个游戏. 贝茜让N(1≤N≤10 ...
- Poj 1002 487-3279(二叉搜索树)
题目链接:http://poj.org/problem?id=1002 思路分析:先对输入字符进行处理,转换为标准形式:插入标准形式的电话号码到查找树中,若有相同号码计数器增加1,再中序遍历查找树. ...
- 绫致时装讲述O2O细节:野心在“私人定制” - 移动购物 - 亿邦动力网
绫致时装讲述O2O细节:野心在"私人定制" - 移动购物 - 亿邦动力网 绫致时装讲述O2O细节:野心在"私人定制" 作者: 亿邦动力网来源: 亿邦动力网201 ...
- Threejs 官网 - Three.js 的图形用户界面工具(GUI Tools with Three.js)
Threejs 官网 - Three.js 的图形用户界面工具(GUI Tools with Three.js) 太阳火神的漂亮人生 (http://blog.csdn.net/opengl_es) ...