博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 绘制PDF嵌套表格
阅读量:6096 次
发布时间:2019-06-20

本文共 4016 字,大约阅读时间需要 13 分钟。

嵌套表格,即在一张表格中的特定单元格中再插入一个或者多个表格,使用嵌套表格的优点在于能够让内容的布局更加合理,同时也方便程序套用。下面的示例中,将介绍如何通过C#编程来演示如何插入嵌套表格到PDF文档。

要点概括:

  1. 插入嵌套表格
  2. 插入文字到嵌套表格
  3. 插入图片到嵌套表格

使用工具

  • Visual Studio
    注:
    1.这里使用的版本为4.9.7,经测试,对于代码中涉及的PdfGridCellContentList类和PdfGridCellContent类仅在使用该版本或者以上版本可用。使用时,请注意版本信息。
    2.下载安装后,在编辑代码时,请注意添加引用Spire.Pdf.dll(dll文件可在安装路径下的Bin文件夹下获取)
    C# 绘制PDF嵌套表格

    示例代码(供参考)

using Spire.Pdf;using Spire.Pdf.Graphics;using Spire.Pdf.Grid;using System.Drawing;using System.Windows.Forms;using System;namespace NestedTable_PDF{    class Program    {        static void Main(string[] args)        {            //实例化PdfDocument类,并添加页面到新建的文档            PdfDocument pdf = new PdfDocument();            PdfPageBase page = pdf.Pages.Add();           //添加字体、画笔,写入文本到PDF文档            PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("行楷", 11f), true);            PdfPen pen = new PdfPen(Color.Gray);            string text = "2018 Pyeongchang Olympic Winter Games Medal Ranking";            page.Canvas.DrawString(text, font, pen, 100, 50);            //创建一个PDF表格,并添加两行            PdfGrid grid = new PdfGrid();             PdfGridRow row1 = grid.Rows.Add();            PdfGridRow row2 = grid.Rows.Add();            //设置表格的单元格内容和边框之间的上、下边距            grid.Style.CellPadding.Top = 5f;            grid.Style.CellPadding.Bottom = 5f;            //添加三列,并设置列宽            grid.Columns.Add(3);            grid.Columns[0].Width = 120f;            grid.Columns[1].Width = 150f;            grid.Columns[2].Width = 120f;             //创建一个一行两列的嵌套表格            PdfGrid embedGrid1 = new PdfGrid();            PdfGridRow newRow = embedGrid1.Rows.Add();            embedGrid1.Columns.Add(2);            //设置嵌套表格的列宽            embedGrid1.Columns[0].Width = 50f;            embedGrid1.Columns[1].Width = 60f;            //初始化SizeF类,设置图片大小            SizeF imageSize = new SizeF(45, 35);            //实例化PdfGridCellContentList、PdfGridCellContent类,加载添加到嵌套表格的图片            PdfGridCellContentList contentList = new PdfGridCellContentList();            PdfGridCellContent content = new PdfGridCellContent();            content.Image = PdfImage.FromFile("1.png");            content.ImageSize = imageSize;            contentList.List.Add(content);            //实例化PdfStringFormat、PdfTrueTypeFont类,设置单元格文字对齐方式、字体、字号等            PdfStringFormat stringFormat = new PdfStringFormat(PdfTextAlignment.Center, PdfVerticalAlignment.Middle);                     //设置嵌套表格的单元格的值,并应用格式            newRow.Cells[0].Value = "Norway";            newRow.Cells[0].StringFormat = stringFormat;            newRow.Cells[1].Value = contentList; //将图片添加到嵌套表格的第二个单元格            newRow.Cells[1].StringFormat = stringFormat;                       //设置第一个表格的单元格的值和格式            row1.Cells[0].Value = "Rank";            row1.Cells[0].StringFormat = stringFormat;            row1.Cells[0].Style.Font = font;            row1.Cells[0].Style.BackgroundBrush = PdfBrushes.LightSalmon;            row1.Cells[1].Value = "Country";            row1.Cells[1].StringFormat = stringFormat;            row1.Cells[1].Style.Font = font;            row1.Cells[1].Style.BackgroundBrush = PdfBrushes.LightSalmon;            row1.Cells[2].Value = "Total";            row1.Cells[2].StringFormat = stringFormat;            row1.Cells[2].Style.Font = font;            row1.Cells[2].Style.BackgroundBrush = PdfBrushes.LightSalmon;            row2.Cells[0].Value = "1";            row2.Cells[0].StringFormat = stringFormat;            row2.Cells[0].Style.Font = font;            row2.Cells[1].Value = embedGrid1; //将嵌套表格添加到第一个表格的第二行第二个单元格            row2.Cells[1].StringFormat = stringFormat;            row2.Cells[2].Value = "39";            row2.Cells[2].StringFormat = stringFormat;            row2.Cells[2].Style.Font = font;            //将表格绘制到页面指定位置            grid.Draw(page, new PointF(30f, 90f));            //保存文档并打开            pdf.SaveToFile("result.pdf");            System.Diagnostics.Process.Start("result.pdf");        }    }}

代码完成后,调试程序,生成文档,嵌套表格绘制效果如下:

C# 绘制PDF嵌套表格
以上是本次C#绘制PDF嵌套表格的全部内容。
示例拓展:

本文完

转载于:https://blog.51cto.com/eiceblue/2301181

你可能感兴趣的文章
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
使用FMDB最新v2.3版本教程
查看>>
SSIS从理论到实战,再到应用(3)----SSIS包的变量,约束,常用容器
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>