用Itextsharp 组件导出PDF 的文档的方法

Itextsharp 是一个很强大,开源的,轻量级的 PDF 生成组件,官方网上好像没有相应的API 说明文档,以下是在工作中使用的心得与体会,并附上源码,功能包含了pdf 的创建,table 的创建, 图片的创建以及pdf 文件的读取 。 欢迎转载,转载时,请注明出处。

首先,从Git Itextsharp 官方网站中 ,下载itextsharp.dll 文件,或从VS 的NUGET 管理包中进行添加引用,然后在项目中引用,Demon 中使用的是最新的版本 itextsharp.5.5.13.0 ,或使用该Demon 中的Itextsharp.dll, Git 官网会不定时进行更新,建议使用最新的 Itextsharp.dll 版本。

点击下载 Itextsharp5.5.13.0.dll

 

 

Demon 是个wpf 窗体文件,MainWindow.xaml.cs代码如下:

* Copyright: ©2016-2018 dell  All Rights Reserved.** Current CLR Version: 4.0.30319.18063** ProjectName: iTextSharp Demon** Assembly:1.0.0.0 ** Author:Will* * Created:2018/7/23 10:04:06* * Description:********************************************************************** Modify By:* * Modify On:* * Modify Description:* ******************************************************************* */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;namespace PdfDemo
{/// <summary>/// MainWindow.xaml 的交互逻辑/// </summary>public partial class MainWindow : Window{public MainWindow(){InitializeComponent();}/// <summary>/// 我得第一个Pdf程序/// </summary>private void CreatePdf(){Microsoft.Win32.SaveFileDialog dialog = GetDialoag();Nullable<bool> result = dialog.ShowDialog();if (result == true){Document document = new Document();PdfWriter.GetInstance(document, new FileStream(dialog.FileName, FileMode.Create));document.Open();iTextSharp.text.Paragraph paragraph = new iTextSharp.text.Paragraph("Hello World");document.Add(paragraph);document.Close();System.Diagnostics.Process.Start(dialog.FileName);}}/// <summary>/// 设置页面大小、作者、标题等相关信息设置/// </summary>private void CreatePdfSetInfo(){Microsoft.Win32.SaveFileDialog dialog = GetDialoag();Nullable<bool> result = dialog.ShowDialog();if (result == true){//设置纸张大小,自定义大小iTextSharp.text.Rectangle pageSize = new iTextSharp.text.Rectangle(216f, 716f);pageSize.BackgroundColor = new iTextSharp.text.BaseColor(0xFF, 0xFF, 0xDE);//设置边界using (Document document = new Document(pageSize, 36f, 72f, 108f, 180f)){// 也可使用系统定义的纸张大小// Document document = new Document(PageSize.A4, 0, 0, 45, 25);var writer = PdfWriter.GetInstance(document, new FileStream(dialog.FileName, FileMode.Create));document.Open();// 添加文档信息document.AddTitle("PDF Document Create by iTextSharp");document.AddSubject("Welcome to use iTextSharp");document.AddKeywords("PDF,iTextSharp");document.AddCreator("Create by will");document.AddAuthor("Will");// 添加文档内容for (int i = 0; i < 5; i++){document.Add(new iTextSharp.text.Paragraph("Hello World! Successfuly Create PDF document! "));}writer.Flush();document.Close();System.Diagnostics.Process.Start(dialog.FileName);}}}/// <summary>/// 创建多个Pdf新页/// </summary>private void CreateTextPDF(){Microsoft.Win32.SaveFileDialog dialog = GetDialoag();Nullable<bool> result = dialog.ShowDialog();if (result == true){using (Document document = new Document(PageSize.NOTE)){PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(dialog.FileName, FileMode.Create));document.Open();// 新宋体字,后面的1是索引,索引从0开始,索引的可选项: 0, 1 ;不可省略,因宋体字有两种,宋体,新宋string fontFile = @"C:\Windows\Fonts\SIMSUN.TTC,1";// 字体BaseFont bFont = BaseFont.CreateFont(fontFile, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);iTextSharp.text.Font font = new iTextSharp.text.Font(bFont, 9.0f);for (int k = 1; k < 4; k++){// 添加新页面,第k 页
                        document.NewPage();// 重新开始页面计数// document.ResetPageCount();for (int i = 1; i < 21; i++){// 使用chuck 可有效的输出文字// 也可使用 document.Add(new iTextSharp.text.Paragraph("Hello World, Hello World, Hello World, Hello World, Hello World"));Chunk chuck = new iTextSharp.text.Chunk("Hello,Hello,Hello,Hello, How are you?");// 文字字体chuck.Font = font;var paragraph = new iTextSharp.text.Paragraph(chuck);// 对齐方式,剧中对齐paragraph.Alignment = Element.ALIGN_CENTER;paragraph.SpacingAfter = 5.0f;document.Add(paragraph);}}writer.Flush();document.Close();System.Diagnostics.Process.Start(dialog.FileName);}}}/// <summary>/// 生成图片pdf页(pdf中插入图片)/// </summary>public void CreatePDFImage(){//临时文件路径string imagePath = AppDomain.CurrentDomain.BaseDirectory + @"Image\1.jpg";Microsoft.Win32.SaveFileDialog dialog = GetDialoag();Nullable<bool> result = dialog.ShowDialog();if (result == true){using (Document document = new Document()){PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(dialog.FileName, FileMode.Create));document.Open();iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(imagePath);// 图片位置img.SetAbsolutePosition((PageSize.A4.Width - img.ScaledWidth) / 2, (PageSize.A4.Height - img.ScaledHeight) / 2);writer.DirectContent.AddImage(img);iTextSharp.text.Paragraph p = new iTextSharp.text.Paragraph("Hi,I am Wang Wang", new iTextSharp.text.Font(Font.FontFamily.HELVETICA, 22f));p.Alignment = Element.ALIGN_CENTER;document.Add(p);writer.Flush();document.Close();System.Diagnostics.Process.Start(dialog.FileName);}}}/// <summary>/// iTextSharp 读取pdf 文件/// </summary>private void ReadPdf(){try{string fileName = AppDomain.CurrentDomain.BaseDirectory + @"File\ITextSharp Demon.pdf";// 创建一个PdfReader对象PdfReader reader = new PdfReader(fileName);// 获得文档页数int n = reader.NumberOfPages;// 获得第一页的大小iTextSharp.text.Rectangle psize = reader.GetPageSize(1);float width = psize.Width;float height = psize.Height;// 创建一个文档变量Document document = new Document(psize, 50, 50, 50, 50);// 创建该文档PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(@"C:\Read.pdf", FileMode.Create));// 打开文档
                document.Open();// 添加内容PdfContentByte cb = writer.DirectContent;int i = 0;int p = 0;Console.WriteLine("一共有 " + n + " 页.");while (i < n){document.NewPage();p++;i++;PdfImportedPage page1 = writer.GetImportedPage(reader, i);cb.AddTemplate(page1, .5f, 0, 0, .5f, 0, height / 2);Console.WriteLine("处理第 " + i + "");if (i < n){i++;PdfImportedPage page2 = writer.GetImportedPage(reader, i);cb.AddTemplate(page2, .5f, 0, 0, .5f, width / 2, height / 2);Console.WriteLine("处理第 " + i + "");}if (i < n){i++;PdfImportedPage page3 = writer.GetImportedPage(reader, i);cb.AddTemplate(page3, .5f, 0, 0, .5f, 0, 0);Console.WriteLine("处理第 " + i + "");}if (i < n){i++;PdfImportedPage page4 = writer.GetImportedPage(reader, i);cb.AddTemplate(page4, .5f, 0, 0, .5f, width / 2, 0);Console.WriteLine("处理第 " + i + "");}cb.SetRGBColorStroke(255, 0, 0);cb.MoveTo(0, height / 2);cb.LineTo(width, height / 2);cb.Stroke();cb.MoveTo(width / 2, height);cb.LineTo(width / 2, 0);cb.Stroke();BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);cb.BeginText();cb.SetFontAndSize(bf, 14);cb.ShowTextAligned(PdfContentByte.ALIGN_CENTER, "page " + p + " of " + ((n / 4) + (n % 4 > 0 ? 1 : 0)), width / 2, 40, 0);cb.EndText();}// 关闭文档
                document.Close();}catch (Exception e){throw e;}}/// <summary>/// pdf 阅读器打开 pdf 文件/// </summary>private void ReadPdfNormal(){try{string fileName = AppDomain.CurrentDomain.BaseDirectory + @"File\ITextSharp Demon.pdf";System.Diagnostics.Process.Start(fileName);}catch (Exception e){throw e;}}/// <summary>/// 创建PDF表格/// </summary>public void CreatePDFTable(){Microsoft.Win32.SaveFileDialog dialog = GetDialoag();Nullable<bool> result = dialog.ShowDialog();if (result != null && result.Equals(true)){using (Document document = new Document()){PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(dialog.FileName, FileMode.Create));document.Open();PdfPTable table = new PdfPTable(5);for (int i = 1; i < 100; i++){PdfPCell cell = new PdfPCell(new Phrase("Cell " + i + "colspan 4 rowspan 1"));// 单元格占的列数,5列cell.Colspan = 4;// 单元格占的行数,3行cell.Rowspan = 1;// 边框cell.BorderWidth = 0.2f;// 边框颜色cell.BorderColor = BaseColor.BLACK;// 水平对齐方式,剧中cell.HorizontalAlignment = Element.ALIGN_CENTER;// 垂直对齐方式: 剧中cell.VerticalAlignment = Element.ALIGN_MIDDLE;// 添加单元格
                        table.AddCell(cell);PdfPCell cell2 = new PdfPCell(new Phrase("Cell " + i + "colspan 1 rowspan 1"));// 边框cell2.BorderWidth = 0.2f;// 边框颜色cell2.BorderColor = BaseColor.BLACK;// 水平对齐方式,剧中cell2.HorizontalAlignment = Element.ALIGN_CENTER;// 垂直对齐方式: 剧中cell2.VerticalAlignment = Element.ALIGN_MIDDLE;// 添加单元格
                        table.AddCell(cell2);}document.Add(table);writer.Flush();document.Close();System.Diagnostics.Process.Start(dialog.FileName);}}}/// <summary>/// 保存文件对话框/// </summary>/// <returns></returns>public Microsoft.Win32.SaveFileDialog GetDialoag(){Microsoft.Win32.SaveFileDialog dialog = new Microsoft.Win32.SaveFileDialog();dialog.FileName = "ITextSharp Demon";dialog.DefaultExt = ".pdf";dialog.Filter = "Text documents (.pdf)|*.pdf";return dialog;}// 创建表格private void btnTable_Click(object sender, RoutedEventArgs e){CreateTextPDF();}// 创建文本private void btnText_Click(object sender, RoutedEventArgs e){CreatePDFTable();}// 读取pdf private void btnRead_Click(object sender, RoutedEventArgs e){//ReadPdf();
            ReadPdfNormal();}// 创建图片private void btnImage_Click(object sender, RoutedEventArgs e){CreatePDFImage();}}
}

MainWindow.xaml 代码如下 :

<Window x:Class="PdfDemo.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"Title="MainWindow" Height="350" Width="525"><Grid><Button Content="创建文本" Height="23" HorizontalAlignment="Left" Margin="38,268,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="btnText_Click" /><Button Content="创建表格" Height="23" HorizontalAlignment="Left" Margin="266,0,0,20" Name="button2" VerticalAlignment="Bottom" Width="75" Click="btnTable_Click" /><Button Content="创建图片" Height="23" HorizontalAlignment="Left" Margin="379,268,0,0" Name="button3" VerticalAlignment="Top" Width="75" Click="btnImage_Click" /><Button Content="读取PDF" Height="23" HorizontalAlignment="Left" Margin="151,0,0,20" Name="button4" VerticalAlignment="Bottom" Width="75" Click="btnRead_Click" /><Label Content="Hello,Welcome to use" Height="198" HorizontalAlignment="Center" Margin="23,24,0,0" Name="label1" VerticalAlignment="Top" Width="431" ToolTip="Hello,Welcome to use" FontSize="18" FontWeight="Bold" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" SnapsToDevicePixels="True" /></Grid>
</Window>

参考资料:

1. Git Itextsharp 官方网站

2. 其它资料  

https://wenku.baidu.com/view/032eb56aaf1ffc4ffe47ac1d.html

https://www.cnblogs.com/loyung/p/6879917.html

https://sourceforge.net/projects/itextsharp/

转载于:https://www.cnblogs.com/wisdo/p/9354122.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/249907.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

正则基础知识

创建正则表达式 1.使用new来创建 var exp new RegExp(box , gi );g 全局匹配 i 忽略大小写 m 多行匹配2.使用字面量 var exp /box/gi; 直接用2个 / ; 在俩个斜杠后加上模式修饰符&#xff1b; 俩种创建方式比较: 1.使用字面量方式创建用的更加广泛; 2.当要匹配的内容是变量时,…

详解 vue-cli 的打包配置文件代码

一、前言 对于webpack基础不好&#xff0c;node指令不通的童鞋。估计对自己搭建Vue、react脚手架是相当头疼的&#xff0c;有种无从下手的感觉。然而&#xff0c;从头看这2块&#xff0c;耗时太长&#xff0c;而且说实话得练才行&#xff0c;不练练手看不明白。那大多数人就采…

室内定位(一)

转自&#xff1a;http://www.cnblogs.com/rubbninja/ 各种室内定位方法 具体的室内无线定位技术可以这样来分类&#xff1a; 无线设备&#xff1a;WIFI、蓝牙、ZigBee、RFID、UWB、LED、红外线、超声波、麦克风等定位信息&#xff1a;主要是RSS&#xff08;接收信号强度&#x…

不同浏览器css引入外部字体的方式

/*** 字体后缀和浏览器有关&#xff0c;如下所示* .TTF或.OTF&#xff0c;适用于Firefox 3.5、Safari、Opera * .EOT&#xff0c;适用于Internet Explorer 4.0 * .SVG&#xff0c;适用于Chrome、IPhone * 比如:*/ font-face {font-family: MyFont;/*定义字体名称*/src: url(fon…

Promise实践

var doSomething function() { return new Promise((resolve, reject) > { resolve(返回值); }); };let doSomethingElse function() { return 新的值; }doSomething().then(function () { return doSomethingElse(); }).then(resp > { console.warn(resp); console.wa…

JsonBuilder初出茅庐

互联网这股东风不久前刮到了甘凉国&#xff0c;国王老甘独具慧眼&#xff0c;想赶紧趁着东风未停大力发展移动互联网&#xff0c;因为他笃信布斯雷的理论&#xff1a;“站在风口上&#xff0c;猪都能飞起来”。无奈地方偏僻落后&#xff0c;国内无可用之才啊。老甘一筹莫展的低…

vue-cli 打包部署

1、一般打包 &#xff1a;直接 npm run build。&#xff08;webpack的文件&#xff0c;根据不同的命令&#xff0c;执行不同的代码的&#xff09; 注&#xff1a;这种打包的静态文件&#xff0c;只能放在web服务器中的根目录下才能运行。 2、在服务器中 非根目录下 运行的 打包…

EXCEL怎么打20位以上的数字?

EXCEL怎么打20位以上的数字&#xff1f; 转载于:https://www.cnblogs.com/macT/p/10208794.html

vue render函数

Vue中的Render渲染函数 VUE一般使用template来创建HTML&#xff0c;然后在有的时候&#xff0c;我们需要使用javascript来创建html&#xff0c;这时候我们需要使用render函数。比如如下我想要实现如下html&#xff1a; <div id"container"><h1><a hre…

Nexus介绍

转自&#xff1a;https://www.cnblogs.com/wincai/p/5599282.html 开始在使用Maven时&#xff0c;总是会听到nexus这个词&#xff0c;一会儿maven&#xff0c;一会儿nexus&#xff0c;当时很是困惑&#xff0c;nexus是什么呢&#xff0c;为什么它总是和maven一起被提到呢&#…

vue-cli 打包

一项目打包 1 打包的配置在 build/webpack.base.conf.js文件下 常量config在vue/config/index.js 文件下配置&#xff0c;__dirname是定义在项目的全局变量&#xff0c;是当前文件所在项目的文件夹的绝对路径。 2 需要修改vue/config/index.js 文件下的将build对象下的assets…

乘风破浪:LeetCode真题_010_Regular Expression Matching

乘风破浪&#xff1a;LeetCode真题_010_Regular Expression Matching 一、前言 关于正则表达式我们使用得非常多&#xff0c;但是如果让我们自己写一个&#xff0c;却是有非常大的困难的&#xff0c;我们可能想到状态机&#xff0c;确定&#xff0c;非确定状态机确实是一种解决…

python——获取数据类型

在python中&#xff0c;可使用type()和isinstance()内置函数获取数据类型 如&#xff1a; &#xff08;1&#xff09;type()的使用方法&#xff1a;    >>> a 230 >>> type(a) <class str> >>> a 230 …

vue项目工程中npm run dev 到底做了什么

npm install 安装了webpack框架中package.json中所需要的依赖 2.安装完成之后&#xff0c;需要启动整个项目运行&#xff0c;npm run 其实执行了package.json中的script脚本&#xff0c;npm run dev的执行如下 3.底层相当执行webpack-dev-server --inline --progress --confi…

JavaScript回顾与学习——条件语句

一、if...else // if elsevar age 16;if(0 < age && age < 6){console.log("儿童");}else if(6 < age && age < 14){console.log("少年");}else if(14 < age && age < 35){console.log("青年");}els…

bat等大公司常考java多线程面试题

1、说说进程,线程,协程之间的区别 简而言之,进程是程序运行和资源分配的基本单位,一个程序至少有一个进程,一个进程至少有一个线程.进程在执行过程中拥有独立的内存单元,而多个线程共享内存资源,减少切换次数,从而效率更高.线程是进程的一个实体,是cpu调度和分派的基本单位,是比…

webpack.config.js和package.json

webpack.config.js 是webpakc的配置文件&#xff0c;webpack是当今很火的一个打包工具 使用webpack.config.js在你的项目里 可以对你的项目进行模块化打包&#xff0c;并且也可使组件按需加载&#xff0c;还可将图片变成base64格式减少网络请求。 而package.json 是指你项目的…

七牛云图片加载优化

?imageView2/2/w/80https://developer.qiniu.com/dora/manual/1279/basic-processing-images-imageview2 ?imageView2/1/w/80/h/80会裁剪 ?imageView2/3/w/80/h/80不会裁剪 转载于:https://www.cnblogs.com/smzd/p/9025393.html

org.apache.maven.archiver.mavenarchiver.getmanifest怎么解决

原因就是你的maven的配置文件不是最新的 1.help ->Install New Software -> add ->https://otto.takari.io/content/sites/m2e.extras/m2eclipse-mavenarchiver/0.17.2/N/LATEST 或者&#xff08;更新于2018年4月18日17:07:53&#xff09; http://repo1.maven.org/mav…

npm中package.json详解

通常我们使用npm init命令来创建一个npm程序时&#xff0c;会自动生成一个package.json文件。package.json文件会描述这个NPM包的所有相关信息&#xff0c;包括作者、简介、包依赖、构建等信息&#xff0c;格式是严格的JSON格式。 常用命令 npm i --save packageName 安装依赖…