`
reymont
  • 浏览: 529464 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

创建itext document&横向打印

    博客分类:
  • PDF
 
阅读更多

概述

Document是itext的基础,你可以添加文档数据(用户阅读的信息)和元数据(pdf内部使用的信息)。在创建document对象时,你可以定义page size,page color and page margins。

 

构造函数

 

 

查看一下API,Document的构造函数有三个。

 

其中第一个Document给size,color,margins都设置了默认值。查看源代码,默认为Document(PageSize.A4, 36, 36, 36, 36);

 

第二个构造函数就可以自定义页面的大小了,例如:

Rectangle rect = new Rectangle(800,600);
Document document = new Document(rect);

 Rectangle指定了宽为800,高位600的页面。

 

Rectangle

 

在这里有必要看看Rectangle

我们看看一个函数做了什么

 

	/**
	 * Constructs a <CODE>Rectangle</CODE> -object starting from the origin
	 * (0, 0).
	 * 
	 * @param urx
	 *            upper right x
	 * @param ury
	 *            upper right y
	 */
	public Rectangle(float urx, float ury) {
		this(0, 0, urx, ury);
	}

 哦,原来是左下角(0,0)为起点,右上角为宽高。如图所示:

 

当然,通过public Rectangle(float llx, float lly, float urx, float ury)可以随意改变左下角的位置。

 

/**
	 * Constructs a <CODE>Rectangle</CODE> -object.
	 * 
	 * @param llx
	 *            lower left x
	 * @param lly
	 *            lower left y
	 * @param urx
	 *            upper right x
	 * @param ury
	 *            upper right y
	 */
	public Rectangle(float llx, float lly, float urx, float ury) {
		this.llx = llx;
		this.lly = lly;
		this.urx = urx;
		this.ury = ury;
	}

 Page Size

理论上将,你可以随意的创建页面的大小,但是不同的PDF规范,强制规范了页面的大小。这一点,比较抽象,我就不详细介绍了,具体可以翻阅itext_in_action_2006 2.1.1小结。

 

Itext提供了一个很实用的类PageSize,它的作用就是返回static final Rectangle对象的集合。提供了标准化的页面大小。例如:

 

Document document = new Document(PageSize.A4)

横向打印

 

接下来有个很有趣的函数rotate()。

 

在打印的时候,经常需要横向打印。有了rotate,这下方便了。

 

Document document = new Document(PageSize.A4.rotate());

 

还有Page color和Page Margins,

 

Rectangle rect = PageSize.A4;
rect.setBackgroundColor(Color.BLUE);
Document document = new Document(rect);
 

 

Document document = new Document(PageSize.A4, 36,70, 120, 100);
 

 

  测试代码

 

import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfWriter;

import junit.framework.TestCase;
/**
 * @blog http://reymont.iteye.com/
 * @MSN reymont.li@hotmail.com
 * @author reymont.li
 * @version create time:2011-7-29 上午10:01:44
 */
public class DocumentStudy extends TestCase{
	public void testNewDocumentMargin(){
		Document document = new Document(PageSize.A4, 36,70, 120, 100);
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocumentMargin.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
	public void testNewDocumentColor(){
		Rectangle rect = PageSize.A4;
		rect.setBackgroundColor(Color.BLUE);
		Document document = new Document(rect);
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocumentColor.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
	public void testNewDocumentRotate(){
		Document document = new Document(PageSize.A4.rotate());
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocumentRotate.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
	public void testNewDocument2(){
		Rectangle rect = new Rectangle(500,500,800,600);
		Document document = new Document(rect);
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocument2.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
	public void testNewDocument1(){
		Rectangle rect = new Rectangle(0,0,800,600);
		Document document = new Document(rect);
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocument1.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
	public void testNewDocument(){
		Rectangle rect = new Rectangle(800,600);
		Document document = new Document(rect);
		try {
			PdfWriter.getInstance(
					document,
					new FileOutputStream("resource/NewDocument1.pdf"));
			document.open();
			document.add(new Paragraph("Hello World"));
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}
		document.close();
	}
	
}

 

参考

IText.Manning.iText.in.Action.Dec.2006.pdf

itext-2.0.8.jar

 

 

 

 

  • 大小: 5.9 KB
  • 大小: 5.4 KB
  • 大小: 4.3 KB
分享到:
评论
2 楼 小4与小 2015-09-07  
cj_long 写道
楼主请问一下,如果文档第一页(例如:封面页是竖的),第二页内容是横向的,这种如何解决?我用newPage()方法以后,再setPageSize(A4.rorate()),结果第一页也变成横向的了。

朋友, 我也遇到跟你一样的问题了, 请问你解决了吗?
1 楼 cj_long 2015-06-11  
楼主请问一下,如果文档第一页(例如:封面页是竖的),第二页内容是横向的,这种如何解决?我用newPage()方法以后,再setPageSize(A4.rorate()),结果第一页也变成横向的了。

相关推荐

    iText中文开发手册

    首先,我们需要创建一个Document对象,然后创建一个Writer实例,打开Document,添加内容,最后关闭Document。 1. 创建Document对象 Document对象是iText中的核心对象,用于表示PDF文档。我们可以使用以下三种方法...

    iText中文帮助文档_itext中文帮助文档_itext_iTextpdf_itext中文文档_

    这个中文帮助文档提供了详细的指导,帮助开发者理解和使用iText来创建包含丰富内容的PDF文件。以下是对iText库和文档中涉及的关键知识点的详细解释: 1. **iText基本概念**: - **PDF(Portable Document Format)...

    itext中文操作手册

    1. **创建Document对象**:这是生成PDF的第一步,通过`Document()`构造函数初始化Document对象。此构造函数可以接受不同的参数来设定页面大小和页边距。 2. **创建Writer实例**:使用`PdfWriter.getInstance()`方法...

    ITEXT输出pdf

    iText 输出 PDF 文件 iText 是一个流行的开源库,用于生成 PDF 文件...使用 iText 库生成 PDF 文件非常简单,只需要按照五步骤进行:创建 Document 对象,创建 Writer 实例,打开 Document,添加内容,关闭 Document。

    iText中文教程

    - 要创建横向页面,可以使用`rotate()`方法,例如: ```java Document document = new Document(PageSize.A4.rotate()); ``` - **设置页边距**: - 在创建`Document`对象时,可以通过传递页边距参数来调整左右...

    iText中文帮助文档.doc

    总结来说,iText 的使用包括初始化 Document、创建 Writer、添加内容和关闭 Document 四个主要步骤。处理中文字符需要额外的字体设置,而 Document 的构造函数提供了自定义页面尺寸和页边距的功能,便于创建符合特定...

    itext-asian-5.2.0.jar、itextpdf-5.5.5.jar 两个JAR包

    在`itextpdf-5.5.5.jar`中,你将找到处理PDF文档的基本工具,如`PdfWriter`用于创建PDF,`PdfReader`用于读取PDF,以及`Document`类用于定义文档结构。然而,这个版本默认可能并不包含对中文字符的完整支持,因此你...

    itext使用说明

    1. **创建Document对象**:这是创建PDF文档的第一步。`Document`对象定义了文档的基本属性,例如页面大小和页边距。 ```java Document document = new Document(); ``` 2. **创建Writer实例**:为了将文档写入...

    使用itextpdf将excel转化为pdf + pdf加水印

    3. **创建PDF文档**:初始化一个Document对象,设置页边距和大小,准备写入PDF内容。 4. **转换表格**:遍历Excel的工作表,将每个单元格的内容和样式转换为PDF元素,如Paragraph、Table等,然后添加到PDF文档中。 5...

    JAVA 操作PDF itext5.05

    首先,创建一个`Document`对象,并指定页面大小为A4旋转(横向),以及各边距。这里的边距分别设置了左边距、右边距、上边距和下边距。 ##### 2. 创建PDF Writer实例 使用`PdfWriter.getInstance(document, new ...

    ITEXT使用例子

    `Document`对象可以通过不同构造函数初始化,例如默认的`Document()`会创建一个A4大小的页面。也可以通过`Document(Rectangle pageSize)`或`Document(Rectangle pageSize, int marginLeft, int marginRight, int ...

    itext制作pdf

    `可以创建一个自定义大小的页面,`pageSize.rotate()`则会将其设置为横向。 **Writer对象** Writer对象是连接Document对象与实际存储格式的关键。例如,`PDFWriter.getInstance(document, outputStream)`用于创建...

    iText简绍及操作PDF文件

    1. **创建 Document 对象**:`Document` 是 iText 中的核心类,它代表了一个 PDF 文档的结构。可以使用不同的构造函数来初始化 `Document`,例如: ```java Document document = new Document(); ``` 这个构造...

    iText帮助文档.pdf

    本文档主要介绍了如何使用iText进行基本的PDF文件创建。 #### 二、创建PDF文件的基本步骤 根据文档描述,创建一个简单的PDF文件主要包括五个步骤: 1. **创建Document对象** ```csharp Document document = new ...

    ITextSharp修改文字排列方向横向竖向.7z

    ITextSharp的核心类`PdfWriter`和`Document`用于创建新的PDF文档,而`PdfContentByte`类则用于在PDF页面上绘制文本和图形。要改变文字的方向,你需要使用`ColumnText`类,它提供了一种流式布局方式,可以设置文字的...

    利用iText包实现Java报表打印

    标题中提及的关键知识点是iText包在Java中的应用,用于实现报表打印功能。描述和部分内容进一步解释了iText包在不同场景下的应用,包括动态生成整个报表文件内容以及在已有PDF报表文档中填写数据域来完成报表。接着...

Global site tag (gtag.js) - Google Analytics