.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:创建PDF
Document.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 

注意:源代码中的相关素材进行了精简,否则文件比较大,长传比较大。如果有需求可以去文章链接原文下载,或者单独留下邮箱,我有空发送一下。


本文转自叶小钗 h数据之巅博客园博客,原文链接:http://www.cnblogs.com/asxinyu/p/dotnet_Opensource_project_PdfFileWriter.html,如需转载请自行联系原作者

相关文章
|
19天前
|
人工智能 文字识别 数据挖掘
MarkItDown:微软开源的多格式转Markdown工具,支持将PDF、Word、图像和音频等文件转换为Markdown格式
MarkItDown 是微软开源的多功能文档转换工具,支持将 PDF、PPT、Word、Excel、图像、音频等多种格式的文件转换为 Markdown 格式,具备 OCR 文字识别、语音转文字和元数据提取等功能。
120 9
MarkItDown:微软开源的多格式转Markdown工具,支持将PDF、Word、图像和音频等文件转换为Markdown格式
|
10天前
|
缓存 算法 安全
精选10款C#/.NET开发必备类库(含使用教程),工作效率提升利器!
精选10款C#/.NET开发必备类库(含使用教程),工作效率提升利器!
44 12
|
8天前
|
C#
基于 C# 编写的 Visual Studio 文件编码显示与修改扩展插件
基于 C# 编写的 Visual Studio 文件编码显示与修改扩展插件
|
23天前
|
JavaScript
jquery图片和pdf文件预览插件
EZView.js是一款jquery图片和pdf文件预览插件。EZView.js可以为图片和pdf格式文件生成在线预览效果。支持的文件格式有pdf、jpg、 png、jpeg、gif。
48 16
|
2月前
|
机器学习/深度学习 人工智能 Cloud Native
在数字化时代,.NET 技术凭借其跨平台兼容性、丰富的类库和工具集以及卓越的性能与效率,成为软件开发的重要平台
在数字化时代,.NET 技术凭借其跨平台兼容性、丰富的类库和工具集以及卓越的性能与效率,成为软件开发的重要平台。本文深入解析 .NET 的核心优势,探讨其在企业级应用、Web 开发及移动应用等领域的应用案例,并展望未来在人工智能、云原生等方面的发展趋势。
46 3
|
3月前
|
Java Apache Maven
将word文档转换成pdf文件方法
在Java中,将Word文档转换为PDF文件可采用多种方法:1) 使用Apache POI和iText库,适合处理基本转换需求;2) Aspose.Words for Java,提供更高级的功能和性能;3) 利用LibreOffice命令行工具,适用于需要开源解决方案的场景。每种方法都有其适用范围,可根据具体需求选择。
|
3月前
|
Java Apache Maven
Java将word文档转换成pdf文件的方法?
【10月更文挑战第13天】Java将word文档转换成pdf文件的方法?
748 1
|
3月前
|
索引 Python
PDF文件页面提取操作小指南
PDF文件页面提取操作小指南
112 4
|
3月前
|
Python
Python对PDF文件页面的旋转和切割
Python对PDF文件页面的旋转和切割
55 3
|
3月前
|
计算机视觉 Python
Python操作PDF文件
Python操作PDF文件
49 1