`
小杨学JAVA
  • 浏览: 900730 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

itext 横向打印

 
阅读更多

 

创建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);

 

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

Java代码   收藏代码
  1. Rectangle rect = new Rectangle(800,600);  
  2. Document document = new Document(rect);  

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

 

Rectangle

 

在这里有必要看看Rectangle

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

 

Java代码   收藏代码
  1. /** 
  2.  * Constructs a <CODE>Rectangle</CODE> -object starting from the origin 
  3.  * (0, 0). 
  4.  *  
  5.  * @param urx 
  6.  *            upper right x 
  7.  * @param ury 
  8.  *            upper right y 
  9.  */  
  10. public Rectangle(float urx, float ury) {  
  11.     this(00, urx, ury);  
  12. }  

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

 

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

 

Java代码   收藏代码
  1. /** 
  2.      * Constructs a <CODE>Rectangle</CODE> -object. 
  3.      *  
  4.      * @param llx 
  5.      *            lower left x 
  6.      * @param lly 
  7.      *            lower left y 
  8.      * @param urx 
  9.      *            upper right x 
  10.      * @param ury 
  11.      *            upper right y 
  12.      */  
  13.     public Rectangle(float llx, float lly, float urx, float ury) {  
  14.         this.llx = llx;  
  15.         this.lly = lly;  
  16.         this.urx = urx;  
  17.         this.ury = ury;  
  18.     }  

 Page Size

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

 

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

 

Java代码   收藏代码
  1. Document document = new Document(PageSize.A4)  

横向打印

 

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

 

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

 

Java代码   收藏代码
  1. Document document = new Document(PageSize.A4.rotate());  

 

还有Page color和Page Margins,

 

Java代码   收藏代码
  1. Rectangle rect = PageSize.A4;  
  2. rect.setBackgroundColor(Color.BLUE);  
  3. Document document = new Document(rect);  
 

 

Java代码   收藏代码
  1. Document document = new Document(PageSize.A4, 36,70120100);  
 

 

  测试代码

 

Java代码   收藏代码
  1. import java.awt.Color;  
  2. import java.io.FileOutputStream;  
  3. import java.io.IOException;  
  4.   
  5. import com.lowagie.text.Document;  
  6. import com.lowagie.text.DocumentException;  
  7. import com.lowagie.text.PageSize;  
  8. import com.lowagie.text.Paragraph;  
  9. import com.lowagie.text.Rectangle;  
  10. import com.lowagie.text.pdf.PdfWriter;  
  11.   
  12. import junit.framework.TestCase;  
  13. /** 
  14.  * @blog http://reymont.iteye.com/ 
  15.  * @MSN reymont.li@hotmail.com 
  16.  * @author reymont.li 
  17.  * @version create time:2011-7-29 上午10:01:44 
  18.  */  
  19. public class DocumentStudy extends TestCase{  
  20.     public void testNewDocumentMargin(){  
  21.         Document document = new Document(PageSize.A4, 36,70120100);  
  22.         try {  
  23.             PdfWriter.getInstance(  
  24.                     document,  
  25.                     new FileOutputStream("resource/NewDocumentMargin.pdf"));  
  26.             document.open();  
  27.             document.add(new Paragraph("Hello World"));  
  28.         } catch (DocumentException de) {  
  29.             System.err.println(de.getMessage());  
  30.         } catch (IOException ioe) {  
  31.             System.err.println(ioe.getMessage());  
  32.         }  
  33.         document.close();  
  34.     }  
  35.       
  36.     public void testNewDocumentColor(){  
  37.         Rectangle rect = PageSize.A4;  
  38.         rect.setBackgroundColor(Color.BLUE);  
  39.         Document document = new Document(rect);  
  40.         try {  
  41.             PdfWriter.getInstance(  
  42.                     document,  
  43.                     new FileOutputStream("resource/NewDocumentColor.pdf"));  
  44.             document.open();  
  45.             document.add(new Paragraph("Hello World"));  
  46.         } catch (DocumentException de) {  
  47.             System.err.println(de.getMessage());  
  48.         } catch (IOException ioe) {  
  49.             System.err.println(ioe.getMessage());  
  50.         }  
  51.         document.close();  
  52.     }  
  53.       
  54.     public void testNewDocumentRotate(){  
  55.         Document document = new Document(PageSize.A4.rotate());  
  56.         try {  
  57.             PdfWriter.getInstance(  
  58.                     document,  
  59.                     new FileOutputStream("resource/NewDocumentRotate.pdf"));  
  60.             document.open();  
  61.             document.add(new Paragraph("Hello World"));  
  62.         } catch (DocumentException de) {  
  63.             System.err.println(de.getMessage());  
  64.         } catch (IOException ioe) {  
  65.             System.err.println(ioe.getMessage());  
  66.         }  
  67.         document.close();  
  68.     }  
  69.       
  70.     public void testNewDocument2(){  
  71.         Rectangle rect = new Rectangle(500,500,800,600);  
  72.         Document document = new Document(rect);  
  73.         try {  
  74.             PdfWriter.getInstance(  
  75.                     document,  
  76.                     new FileOutputStream("resource/NewDocument2.pdf"));  
  77.             document.open();  
  78.             document.add(new Paragraph("Hello World"));  
  79.         } catch (DocumentException de) {  
  80.             System.err.println(de.getMessage());  
  81.         } catch (IOException ioe) {  
  82.             System.err.println(ioe.getMessage());  
  83.         }  
  84.         document.close();  
  85.     }  
  86.       
  87.     public void testNewDocument1(){  
  88.         Rectangle rect = new Rectangle(0,0,800,600);  
  89.         Document document = new Document(rect);  
  90.         try {  
  91.             PdfWriter.getInstance(  
  92.                     document,  
  93.                     new FileOutputStream("resource/NewDocument1.pdf"));  
  94.             document.open();  
  95.             document.add(new Paragraph("Hello World"));  
  96.         } catch (DocumentException de) {  
  97.             System.err.println(de.getMessage());  
  98.         } catch (IOException ioe) {  
  99.             System.err.println(ioe.getMessage());  
  100.         }  
  101.         document.close();  
  102.     }  
  103.       
  104.     public void testNewDocument(){  
  105.         Rectangle rect = new Rectangle(800,600);  
  106.         Document document = new Document(rect);  
  107.         try {  
  108.             PdfWriter.getInstance(  
  109.                     document,  
  110.                     new FileOutputStream("resource/NewDocument1.pdf"));  
  111.             document.open();  
  112.             document.add(new Paragraph("Hello World"));  
  113.         } catch (DocumentException de) {  
  114.             System.err.println(de.getMessage());  
  115.         } catch (IOException ioe) {  
  116.             System.err.println(ioe.getMessage());  
  117.         }  
  118.         document.close();  
  119.     }  
  120.       
  121. }  

 

参考

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

itext-2.0.8.jar


转载自:http://reymont.iteye.com/blog/1135535

分享到:
评论

相关推荐

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

    - **页面大小和方向**:可以设置不同标准的页面大小,如A4,也可以自定义页面尺寸,并选择横向或纵向布局。 - **页面边距**:可以设置页面的上下左右边距,以控制内容的布局区域。 10. **表单处理**: - **...

    利用iText包实现Java报表打印

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

    JavaPDF打印测试实例

    2. **设置打印参数**:可以指定打印机、纸张大小、方向(横向或纵向)、页码范围等。 3. **调用打印服务**:通过Java的`java.awt.print.PrinterJob`类,与系统打印机建立连接并发送打印请求。 4. **预览和确认**:在...

    图片查看/添加信息/打印

    开发者可能使用了如Java、Python或C#等编程语言,并利用了相应的图形用户界面库(如JavaFX、Qt或WinForms)来构建用户界面,同时依赖于操作系统提供的打印服务或第三方库(如iText、PDFsharp等)来处理打印任务。...

    printerDemo

    6. **打印设置**:开发者还需要考虑用户可能调整的打印设置,如纸张大小、方向(横向或纵向)、页边距、副本数量等。这些设置需要在程序中提供相应的界面供用户选择,并在打印时正确传递给打印任务。 7. **预览功能...

    java调用本地打印机

    在实际打印之前,可能需要设置一些参数,如页面方向(横向或纵向)、缩放比例等。这些可以通过`PageFormat`对象进行配置。 5. **发起打印** 最后,调用`job.print()`方法发起打印任务。 ```java try { job....

    PDF生成 代码源码

    在编程领域,生成PDF文件是一项常见的需求,特别是在报告、发票、合同和其他需要打印或电子分享的文档场景中。这篇内容将深入探讨如何通过代码来生成PDF,包括添加水印和插入图片。 首先,我们需要了解一些基本概念...

    iReport使用教程

    3. **新建报表**:创建新的报表时,可以设定报表的方向,如“Portrait”(纵向)或“Landscape”(横向)。这决定了报表在打印或展示时的布局。 通过以上步骤,用户可以利用iReport进行报表设计,包括定义字段、...

    多张图片转PDF工具FreePic2Pdf.rar

    至于方向,根据图片内容和打印需求,可以选择横向或纵向布局。 最后,点击“创建PDF”按钮,软件会调用PDF库(可能如iText或PDFBox等开源库)生成PDF文件。这个过程涉及PDF文档对象模型的构建,包括页眉、页脚、...

    PDF两页拼接成一页

    有时,为了提高阅读体验或节省打印成本,我们可能需要将两个PDF页面拼接成一个页面。在这个过程中,ITextSharp是一个强大的.NET库,它提供了处理PDF文档的各种功能,包括页面拼接。以下是对如何使用ITextSharp实现...

    java-html-pdf.zip

    3. **PDF生成配置**:在转换过程中,我们通常需要配置一些参数,如页面方向(横向或纵向)、纸张大小(A4、Letter等)、DPI(分辨率)和边距。这些参数可以根据需求进行调整,以确保生成的PDF符合预期。 4. **DOM...

Global site tag (gtag.js) - Google Analytics