在 asp.net c# 中使用 itextsharp 生成 pdf

发布于 2024-10-18 15:53:43 字数 189 浏览 1 评论 0原文

我想生成图片中所附的pdf文件。我想在单击按钮时将图片中显示的内容编码为 pdf 文件。

我该如何继续,使用表结构可以工作?我无法在这里形成表结构。

请帮我解决我的问题。我想要如下图所示的输出。

在此处输入图像描述

I want to generate pdf file as attached in the picture. i want to harcode the contents shown in the picture into a pdf file on button click.

How do i proceed, using table structure will work?I am unable to form the table stucture here.

Please help me to sort out my problem.i want the output as shown in below image.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

慕烟庭风 2024-10-25 15:53:44

首先创建一个包含两列的表,如下所示,

_______________________________________________
|                             |               |
|                             |               |
|                             |               |
|           COL.0.1           |    COL.0.2    |
|                             |               |
|                             |               |
-----------------------------------------------

保留对其列的引用,然后为左侧内容创建表并将其作为左列 COL.0.1 的子内容插入

------------------------------
| designation: xxxxxxx        |   <---- colspan = 2
------------------------------
| Audit No.        |    xxxx  |
------------------------------
| Received on .......         |
-------------------------------

,您可以继续处理与此类似的其余内容。

这个想法是将内容拆分到较小的表中并将它们嵌套。

First create one table with two columns like below

_______________________________________________
|                             |               |
|                             |               |
|                             |               |
|           COL.0.1           |    COL.0.2    |
|                             |               |
|                             |               |
-----------------------------------------------

keep reference to its columns, then create table for left side content and insert it as child content of left column COL.0.1

------------------------------
| designation: xxxxxxx        |   <---- colspan = 2
------------------------------
| Audit No.        |    xxxx  |
------------------------------
| Received on .......         |
-------------------------------

and you can continue for the rest of content similar to this.

The idea is to split content to smaller tables and nest them.

苹果你个爱泡泡 2024-10-25 15:53:43

这里有一个关于使用 iTextSharp 的很好的教程

http://www.mikesdotnetting.com/Category/20

Here you have a good tutorial about using iTextSharp

http://www.mikesdotnetting.com/Category/20

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文