iTextSharp pdf demo 学习总结

PDF

using iTextSharp.text;
using iTextSharp.text.pdf;

Document document = new Document();
PdfWriter writer = null;
int titleSize = 13;
int contentSize = 8;
Font font= new Font(baseFont, contentSize);

//添加字体,支持pdf中文显示:
BaseFont baseFont = BaseFont.CreateFont(@"C:\Windows\Fonts\simsun.ttc,0", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);

PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(string.Format("{0}-{1}.pdf", DateTime.Now.Second, DateTime.Now.Millisecond),
FileMode.Create));


document.Open();

PdfPTable table = new PdfPTable(5); //初始化5列表
table.WidthPercentage = 94f; //表格宽度:1-100f
table.SpacingBefore = 5f;
table.HorizontalAlignment = Element.ALIGN_CENTER;
table.SplitRows = true;

PdfPCell cell;
Paragraph p;

//
p = new Paragraph(" " + LaoshiPingyuValue, new Font(baseFont, contentSize));
cell = new PdfPCell(p);
cell.Border = Rectangle.NO_BORDER;
cell.HorizontalAlignment = Element.ALIGN_LEFT;
cell.Colspan = 5; //次cell跨5列
cell.FixedHeight = 45f; //设置多行数据快的高度
cell.SetLeading(4, 1); //设置多行数据的行间距
table.AddCell(cell);
return table;


//加载本地图片到pdf上
string imagePath = "../../Data/header.png";

private PdfPTable GetTableHeader(string imagePath)
{
PdfPTable table = new PdfPTable(1);
table.WidthPercentage = 100f;
table.SplitRows = true;
table.HeaderRows = 0;
PdfPCell cell;

//add 图片
Image image = Image.GetInstance(imagePath);
cell = new PdfPCell(image, true);
table.AddCell(cell);

return table;
}

document.Add(GetTableContent(content_zongji, titleSize, contentSize));

document.Close();
writer.Close();

posted @   大树2  阅读(193)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示