- 浏览: 74304 次
- 性别:
- 来自: 惠州
文章分类
最新评论
-
woyaonuli:
各位大侠,请教下,怎么让生成的pdf每页都有背景图片, ...
iText 跨行and背景图片 -
lixia0417:
恩,LZ,谢谢了,那我还是练习把SSh的例子改成S2sh的吧, ...
struts2+hibernate3+spring2读书笔记4(数据校验器) -
hhr_michael:
哥们,你好,这本书着重s2sh的各个部分开发,而整合的例子不是 ...
struts2+hibernate3+spring2读书笔记4(数据校验器) -
lixia0417:
对,哥们,问一下,这本书中关于S2SH整合开发的例子多吗,就是 ...
struts2+hibernate3+spring2读书笔记4(数据校验器) -
hhr_michael:
谢谢提醒,由于只是着重校验的过程,所以这代码没有在struts ...
struts2+hibernate3+spring2读书笔记4(数据校验器)
iText 跨行and背景图片(轉)
最近用iText生成pdf文件供下载和当做附件email, 第一次使用,跨行和实现背景图片卡了n久,g了n久,都是提问的,没见给出的解答的,还得靠自己,倒腾了n久,总算解决了,贴出来!
iText的介绍参考http://www.china1024.com/bytesoft/info_show.jsp?news_id=968或者iText的官网,如果想做进一步的了解,到http://www.51leifeng.net/上下本<<iText in Action>>,英文的,耐心点就行了。下面直入主题。
1. iText的跨行
iText的API中Cell可以很容易实现跨行和跨列,但是没法设置列宽和列高(好像是,找了n久没有找到)。只能打PdfPCell的主意了(PdfPCell也是iText推荐的),但是PdfPCell中只有设置跨列的方法,没有提供跨行的方法。用table嵌套,在外层的table中嵌套table,应该可以实现跨列,html中有这样做过。表格是画出来,但是嵌套的表格之间的间隙没发去掉。其实table的嵌套思路是对的,但是应该把table放到cell(PdfPCell的对象)中,再将这个cell放到最外层的table中。总的思路:最外层的table中只addCell,嵌套的table放到被加入到外层table之中的cell中。有点拗口,看代码吧:
package cn.chenkun.iText;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;
public class Colspan {
public static void main(String[] args) {
colspan();
}
private static void colspan(){
Document document = new Document(PageSize.A4, 36, 36, 36, 36);
try {
PdfWriter.getInstance(document, new FileOutputStream("d:\\coslpan.pdf"));
document.open();
PdfPTable table = new PdfPTable(4); // 最外层table
float[] wid = {80f, 100f, 80f, 60f};
table.setTotalWidth(wid);
table.setLockedWidth(true);
PdfPCell cell = null; // 最外层table的cell
PdfPTable iTable = null; // 嵌套的table
PdfPCell iCell = null; // 嵌套的table的cell
iTable = new PdfPTable(3);
float[] iWid = {80f, 100f, 80f};
iTable.setTotalWidth(iWid);
iTable.setLockedWidth(true);
iCell = new PdfPCell(new Paragraph("column 1"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iCell.setColspan(2);
iTable.addCell(iCell);
iCell = new PdfPCell(new Paragraph("column 2"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iTable.addCell(iCell);
iTable.addCell(iCell);
iCell = new PdfPCell(new Paragraph("column 3"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iTable.addCell(iCell);
iTable.addCell(iCell);
cell = new PdfPCell(iTable); // 用这个table初始外层table的cell
cell.setColspan(3); // 设置它跨3列
cell.setFixedHeight(3*30); // 设置它的高度
table.addCell(cell); // 将这个cell加入table中
iTable = new PdfPTable(1);
float[] iWid2 = {60f};
iTable.setTotalWidth(iWid2);
iTable.setLockedWidth(true);
iCell = new PdfPCell(new Paragraph("i am here"));
iTable.addCell(iCell);
cell = new PdfPCell(iTable);
cell.setFixedHeight(3*30); // 跨3列了
table.addCell(cell);
document.add(table);
} catch (Exception de) {
de.printStackTrace();
}
document.close();
}
}
2. iText的背景图片
iText中的PdfPCell都是有自己默认的布局的,要实现自己的布局,必须实现PdfPCellEvent接口,在方法cellLayout中定义自己的布局。更多信息见<<iText in Action>>中10.2 Working with iText’s direct content。Figure 10.6实际上已经实现了背景图片,这里将代码改写如下:
package cn.chenkun.iText;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.Element;
import com.lowagie.text.Image;
import com.lowagie.text.PageSize;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPCellEvent;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;
public class PicBackGround {
public static void main(String[] args) {
picBg();
}
private static void picBg() {
Document document = new Document(PageSize.A4, 36, 36, 36, 36);
try {
PdfWriter.getInstance(document, new FileOutputStream("d:\\testPicBG.pdf"));
document.open();
BGPic border = new BGPic();
float wid = 80f;
float hei = 100f;
float[] widArr = { wid, wid };
PdfPTable table = new PdfPTable(2);
table.setTotalWidth(widArr);
table.setLockedWidth(true);
PdfPCell cell = null;
for (int i = 1; i <= 4; i++) {
Image img = Image.getInstance("d:/ma.jpg");
cell = new PdfPCell(img, true);
cell.setFixedHeight(hei);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setPadding(8);
cell.setCellEvent(border); // 加入背景图片
table.addCell(cell);
}
document.add(table);
} catch (Exception e) {
e.printStackTrace();
} finally {
document.close();
}
}
}
class BGPic implements PdfPCellEvent {
public void cellLayout(PdfPCell cell, Rectangle rect, PdfContentByte[] canvas) {
PdfContentByte cb = canvas[PdfPTable.BACKGROUNDCANVAS];
Image img = null;
try {
img = Image.getInstance("d:/hai.jpg");
img.scaleAbsolute(80, 100); // 设置背景图片的大小
img.setAbsolutePosition(298, 606); // 设置第一个背景图片的绝对位置
cb.addImage(img);
img.setAbsolutePosition(217, 706); // 设置第二个背景图片的绝对位置
cb.addImage(img);
} catch (Exception e) {
e.printStackTrace();
}
}
}
//---------------------------
百度里有搜到一种背景图设置法
Image jpgBack = Image.getInstance(xxxxx);
jpgBack.setAlignment(Image.UNDERLYING);
不过这种方法对表格不起作用
表格里加上图片后,文字怎么都写不到图片上去.
请有过经验的同志们,告知如何给表格加背景图
最近用iText生成pdf文件供下载和当做附件email, 第一次使用,跨行和实现背景图片卡了n久,g了n久,都是提问的,没见给出的解答的,还得靠自己,倒腾了n久,总算解决了,贴出来!
iText的介绍参考http://www.china1024.com/bytesoft/info_show.jsp?news_id=968或者iText的官网,如果想做进一步的了解,到http://www.51leifeng.net/上下本<<iText in Action>>,英文的,耐心点就行了。下面直入主题。
1. iText的跨行
iText的API中Cell可以很容易实现跨行和跨列,但是没法设置列宽和列高(好像是,找了n久没有找到)。只能打PdfPCell的主意了(PdfPCell也是iText推荐的),但是PdfPCell中只有设置跨列的方法,没有提供跨行的方法。用table嵌套,在外层的table中嵌套table,应该可以实现跨列,html中有这样做过。表格是画出来,但是嵌套的表格之间的间隙没发去掉。其实table的嵌套思路是对的,但是应该把table放到cell(PdfPCell的对象)中,再将这个cell放到最外层的table中。总的思路:最外层的table中只addCell,嵌套的table放到被加入到外层table之中的cell中。有点拗口,看代码吧:
package cn.chenkun.iText;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;
public class Colspan {
public static void main(String[] args) {
colspan();
}
private static void colspan(){
Document document = new Document(PageSize.A4, 36, 36, 36, 36);
try {
PdfWriter.getInstance(document, new FileOutputStream("d:\\coslpan.pdf"));
document.open();
PdfPTable table = new PdfPTable(4); // 最外层table
float[] wid = {80f, 100f, 80f, 60f};
table.setTotalWidth(wid);
table.setLockedWidth(true);
PdfPCell cell = null; // 最外层table的cell
PdfPTable iTable = null; // 嵌套的table
PdfPCell iCell = null; // 嵌套的table的cell
iTable = new PdfPTable(3);
float[] iWid = {80f, 100f, 80f};
iTable.setTotalWidth(iWid);
iTable.setLockedWidth(true);
iCell = new PdfPCell(new Paragraph("column 1"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iCell.setColspan(2);
iTable.addCell(iCell);
iCell = new PdfPCell(new Paragraph("column 2"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iTable.addCell(iCell);
iTable.addCell(iCell);
iCell = new PdfPCell(new Paragraph("column 3"));
iCell.setFixedHeight(30);
iTable.addCell(iCell);
iTable.addCell(iCell);
iTable.addCell(iCell);
cell = new PdfPCell(iTable); // 用这个table初始外层table的cell
cell.setColspan(3); // 设置它跨3列
cell.setFixedHeight(3*30); // 设置它的高度
table.addCell(cell); // 将这个cell加入table中
iTable = new PdfPTable(1);
float[] iWid2 = {60f};
iTable.setTotalWidth(iWid2);
iTable.setLockedWidth(true);
iCell = new PdfPCell(new Paragraph("i am here"));
iTable.addCell(iCell);
cell = new PdfPCell(iTable);
cell.setFixedHeight(3*30); // 跨3列了
table.addCell(cell);
document.add(table);
} catch (Exception de) {
de.printStackTrace();
}
document.close();
}
}
2. iText的背景图片
iText中的PdfPCell都是有自己默认的布局的,要实现自己的布局,必须实现PdfPCellEvent接口,在方法cellLayout中定义自己的布局。更多信息见<<iText in Action>>中10.2 Working with iText’s direct content。Figure 10.6实际上已经实现了背景图片,这里将代码改写如下:
package cn.chenkun.iText;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.Element;
import com.lowagie.text.Image;
import com.lowagie.text.PageSize;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPCellEvent;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;
public class PicBackGround {
public static void main(String[] args) {
picBg();
}
private static void picBg() {
Document document = new Document(PageSize.A4, 36, 36, 36, 36);
try {
PdfWriter.getInstance(document, new FileOutputStream("d:\\testPicBG.pdf"));
document.open();
BGPic border = new BGPic();
float wid = 80f;
float hei = 100f;
float[] widArr = { wid, wid };
PdfPTable table = new PdfPTable(2);
table.setTotalWidth(widArr);
table.setLockedWidth(true);
PdfPCell cell = null;
for (int i = 1; i <= 4; i++) {
Image img = Image.getInstance("d:/ma.jpg");
cell = new PdfPCell(img, true);
cell.setFixedHeight(hei);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setPadding(8);
cell.setCellEvent(border); // 加入背景图片
table.addCell(cell);
}
document.add(table);
} catch (Exception e) {
e.printStackTrace();
} finally {
document.close();
}
}
}
class BGPic implements PdfPCellEvent {
public void cellLayout(PdfPCell cell, Rectangle rect, PdfContentByte[] canvas) {
PdfContentByte cb = canvas[PdfPTable.BACKGROUNDCANVAS];
Image img = null;
try {
img = Image.getInstance("d:/hai.jpg");
img.scaleAbsolute(80, 100); // 设置背景图片的大小
img.setAbsolutePosition(298, 606); // 设置第一个背景图片的绝对位置
cb.addImage(img);
img.setAbsolutePosition(217, 706); // 设置第二个背景图片的绝对位置
cb.addImage(img);
} catch (Exception e) {
e.printStackTrace();
}
}
}
//---------------------------
百度里有搜到一种背景图设置法
Image jpgBack = Image.getInstance(xxxxx);
jpgBack.setAlignment(Image.UNDERLYING);
不过这种方法对表格不起作用
表格里加上图片后,文字怎么都写不到图片上去.
请有过经验的同志们,告知如何给表格加背景图
评论
1 楼
woyaonuli
2011-12-20
各位大侠,请教下,怎么让生成的pdf每页都有背景图片,
Image img = null;
img = Image.getInstance(backimg);
img.setAbsolutePosition(0, 0);
img.setAlignment(Image.UNDERLYING);
document.add(img);
这种方式只能在第一页或最后一页插入背景图片,哪位大侠知道,还望不吝赐教
Image img = null;
img = Image.getInstance(backimg);
img.setAbsolutePosition(0, 0);
img.setAlignment(Image.UNDERLYING);
document.add(img);
这种方式只能在第一页或最后一页插入背景图片,哪位大侠知道,还望不吝赐教
发表评论
-
itext 带表头
2010-08-12 16:19 1503itext 带表头有两种方法以: 第一种是Table的,第二 ... -
extremeTable 介绍
2010-08-10 16:12 1119何为 extremeTable,又一个开源taglib ext ... -
Java线程:创建与启动 (转)
2010-07-21 08:54 1941版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 ... -
用Java简单的读取pdf文件中的数据(转)
2010-05-20 09:44 1293用Java简单的读取pdf文件中的数据: 第一步:下载PDFB ... -
非java.util.zip,使用ant.jar制作zip压缩文件,以及相关中文解决方法(轉)
2010-02-10 10:52 914用java.util.zip制作zip压缩文件时,如果制作的压 ... -
JSP环境配置使用fckeditor
2010-02-09 09:45 866JSP环境配置使用fckeditor 关键字: jsp环境配置 ... -
jsp分页
2010-02-09 09:32 941jsp分页 (轉) 关键字: jsp分页 public cl ... -
java 生成excel
2010-02-09 09:18 979java 生成excel (轉) 关键字: java 生成 ... -
input只能输入数字
2010-01-07 15:35 1549input只能输入数字 方法一: <input t ... -
关于DIV被SELECT遮挡问题
2009-12-14 09:00 1048<html> <head> ... -
iText加入页码
2009-11-30 09:18 2893在網上找了點資料,如果單單實現頁碼的顯示,隻需在Documen ... -
struts标签使用举例--logic篇
2009-11-09 15:59 626来源:http://hi.baidu.com/lissnet/ ... -
Eclipse快捷键大全
2009-11-09 12:20 725Ctrl+1 快速修复(最经典 ... -
class.forName().newInstance()的作用
2009-11-02 09:49 1976在Java开发特别是数据库开发中,经常会用到Class.for ... -
[SQLServer]传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确2008-05-28 17:57关键字: sqlserver 2000 d
2009-10-27 15:49 1209[SQLServer]传入的表格格式数据流(TDS)远程过程调 ... -
itext實現水印功能
2009-09-07 12:04 2616近日要用itext來做水印功能,在網上找了好多資料,但都是把原 ... -
pdf成生方法精品
2009-09-07 11:50 810最近由于项目需要,开始使用iText写PDF文件,从网上搜索到 ...
相关推荐
在这个场景中,我们将探讨如何使用iText在Word文档中插入图片和绘制表格。 首先,理解一个关键概念:iText本身并不直接支持Word格式。然而,由于Word文档可以被转换为或从OpenXML格式解析,我们可以通过处理这些XML...
如果图片是通过网络URL引用的,iText会尝试下载并嵌入到PDF中。 在实际应用中,可能需要自定义`HTMLWorker`的行为,例如更改字体设置、调整页面布局或处理特定的HTML标签。iText提供了一些回调接口,允许开发者对...
PDF转换为图片是一种...综上所述,ITEXT和PDFBOX结合使用,可以在Java环境中方便地将PDF文档转换为图片。这为开发者提供了更多处理PDF文档的灵活性和可能性,但同时也需要根据具体需求选择合适的转换参数和优化策略。
在IT行业中,iText是一个广泛使用的Java和.NET库,用于创建、编辑和处理PDF文档。在最新的版本iText 7中,它提供了丰富的功能,包括将PDF文档转换为图像。这个话题涉及到PDF处理和图像转换两个核心领域。下面将详细...
本教程将详细介绍如何使用`iText`将图片转换为高清PDF,并提供一个无坑版的demo示例。 首先,我们需要理解`iText`库的核心概念。`iText`提供了丰富的API,允许开发者创建复杂的PDF文档,包括插入文本、图像、表格等...
本篇文章将深入探讨如何使用iText工具jar包将图片转换为PDF,同时确保图片的等比伸缩,避免失真。 首先,我们需要了解iText的基本用法。iText库提供了一系列API,可以创建新的PDF文档、添加文本、图像、表格等内容...
iText是一款广泛使用的Java库,专门用于创建和编辑PDF文档。在版本2.0.8中,它提供了将HTML转换为PDF的功能,这对于从网页内容生成打印版或者提供离线阅读材料非常有用。这个过程涉及到多个步骤和技术,下面将详细...
在这个简单例子中,我们将探讨如何使用`iText`库在生成的PDF文件中添加图片作为页眉。 首先,你需要在你的项目中引入`iText`库。如果你使用的是Gradle,可以在`build.gradle`文件中添加依赖: ```gradle ...
在实际项目中,可能还需要处理更多细节,如页眉页脚、图片插入等,但上述内容已经覆盖了“itext设置段落行间距.zip”压缩包中的主要知识点。在实际操作中,结合具体的代码示例(如压缩包中的TestDemo),可以更好地...
itext5生成PDF(含水印文字及图片)的源代码,操作说明详细,代码完整可用。
官方提供了详细的下载和安装指南([访问链接](https://developers.itextpdf.com/itext7/download-and-install-information/))。 - 如果是Java项目,还可以通过Maven依赖进行集成。 #### 四、关键步骤解析 ##### ...
在IT行业中,PDF(Portable Document Format...总的来说,使用iTextPDF库,你可以轻松地在已有的PDF文件中添加图片,实现灵活的PDF编辑功能。通过熟练掌握iTextPDF的API,你可以处理更多复杂的PDF操作,提高工作效率。
下面将详细介绍如何使用IText库来实现这个功能,包括添加图片、创建表格以及插入文本。 首先,你需要在项目中引入IText的依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml <groupId>...
Itext5文本转PDF,含图片,代码实例,是5版本的,含亚洲文字支持,有文本,图片转pdf的实例,支持自定义编码,整理好的,直接能用,乱码是因为编码不对,设置编码就好了,具体百度怎样设置编码,里面有设置编码的接口...
iText生成PDF图片文档 iText是一个功能强大的Java类库,用于生成PDF文档。通过使用iText,我们可以轻松地生成PDF文档,包括图片、文字、表格等多种元素。本文将详细介绍如何使用iText生成PDF图片文档。 iText基本...
IText和iTextAsian是两个在Java和.NET平台上广泛使用的PDF处理库,它们主要用于创建、编辑和处理PDF文档。IText是主要的核心库,而iTextAsian则是一个扩展,专门针对亚洲字符集的支持,如中文、日文和韩文。 IText...
总的来说,理解并熟练使用iText库,你将能够用Java高效地生成包含中文、表格和图片的PDF文档。同时结合Apache POI,还可以处理Word文档的生成。这在实际开发中是非常实用的技能,尤其在处理多语言和数据可视化的需求...
PDF图片背景源码是关于使用Itext库在PDF文档中添加图片作为背景、水印以及进行字体设置和页眉页脚操作的技术实现。Itext是一个流行的开源Java库,专门用于创建和修改PDF文档,它提供了丰富的API来实现复杂的PDF操作...
本篇文章将深入探讨如何使用Itext库生成带有表格和图片的Word文档,并提供一个基于描述中的"Demo"文件的示例代码。 首先,我们需要了解Itext库的基本用法。Itext主要通过`Document`对象来构建文档结构,通过`...
然而,根据你的需求,我们不仅要用iText生成Word文档,还要在文档中嵌入图片,这需要对iText的功能有深入的理解,并且可能需要结合其他库如Apache POI。以下是关于这个主题的详细知识: 1. **iText简介**: iText...