iText - 设置字体



本章将介绍如何使用 iText 库在 PDF 文档中设置文本的颜色和字体。

设置 PDF 文本的字体

您可以通过实例化Document类来创建一个空的 PDF 文档。实例化此类时,需要将PdfDocument对象作为参数传递给它的构造函数。

要向文档添加段落,需要实例化Paragraph类并将此对象使用add()方法添加到文档中。您可以使用setFontColor()setFont()方法分别设置文本的颜色和字体。

以下是设置 pdf 文档中文本颜色和字体的步骤。

步骤 1:创建 PdfWriter 对象

PdfWriter类表示 PDF 的 DocWriter。此类属于com.itextpdf.kernel.pdf包。此类的构造函数接受一个字符串,表示要创建 PDF 文件的路径。

通过向其构造函数传递一个字符串值(表示您需要创建 PDF 的路径)来实例化 PdfWriter 类,如下所示。

// Creating a PdfWriter 
String dest = "C:/itextExamples/fonts.pdf"; 
PdfWriter writer = new PdfWriter(dest); 

当此类型的对象传递给 PdfDocument(类)时,添加到此文档的每个元素都将写入指定的文件。

步骤 2:创建 PdfDocument

PdfDocument类是在 iText 中表示 PDF 文档的类。此类属于com.itextpdf.kernel.pdf包。要实例化此类(以写入模式),需要将PdfWriter类的对象传递给它的构造函数。

通过将 PdfWriter 对象传递给它的构造函数来实例化 PdfDocument 类,如下所示。

// Creating a PdfDocument  
PdfDocument pdfDoc = new PdfDocument(writer); 

创建 PdfDocument 对象后,可以使用其类提供的相应方法添加各种元素,例如页面、字体、文件附件和事件处理程序。

步骤 3:创建 Document 类

com.itextpdf.layout包中的Document类是创建自包含 PDF 时的根元素。此类的构造函数之一接受PdfDocument类的对象。

通过传递在前面步骤中创建的PdfDocument类的对象来实例化 Document 类,如下所示。

// Creating a Document   
Document document = new Document(pdfDoc); 

步骤 4:创建文本

通过实例化com.itextpdf.layout.element包中的Text类来创建文本,如下所示。

// Creating text object 
Text text = new Text("Tutorialspoint"); 

步骤 5:设置文本的字体和颜色

使用com.itextpdf.kernel.font包中PdfFontFactory类的createFont()方法创建PdfFont对象,如下所示。

// Setting font of the text PdfFont 
font = PdfFontFactory.createFont(FontConstants.HELVETICA_BOLD); 

现在,使用Text类的setFont()方法将字体设置为该方法。将PdfFont对象作为参数传递,如下所示。

text1.setFont(font);

要将颜色设置为文本,请调用 Text 类的setFontColor()方法,如下所示。

// Setting font color 
text.setFontColor(Color.GREEN); 

步骤 6:将文本添加到段落

创建一个Paragraph类对象,并使用其add()方法添加上面创建的文本,如下所示。

// Creating Paragraph 
Paragraph paragraph = new Paragraph();  

// Adding text to the paragraph 
paragraph.add(text); 

步骤 7:将段落添加到文档

使用Document类的add()方法将段落添加到文档中,如下所示。

doc.add(paragraph1)

步骤 8:关闭文档

使用Document类的close()方法关闭文档,如下所示。

// Closing the document 
document.close(); 

示例

以下 Java 程序演示了如何使用 iText 库在 PDF 中设置文本的颜色和字体。它创建一个名为fonts.pdf的 PDF 文档,格式化文本并将其保存在C:/itextExamples/路径中。

将此代码保存在名为FormatingTheText.java的文件中。

import com.itextpdf.io.font.FontConstants; 
import com.itextpdf.kernel.color.Color; 
import com.itextpdf.kernel.font.PdfFontFactory; 
import com.itextpdf.kernel.font.PdfFont; 
import com.itextpdf.kernel.pdf.PdfDocument; 
import com.itextpdf.kernel.pdf.PdfWriter; 

import com.itextpdf.layout.Document; 
import com.itextpdf.layout.element.Paragraph; 
import com.itextpdf.layout.element.Text;  

public class FormatingTheText {     
   public static void main(String args[]) throws Exception {        
      // Creating a PdfWriter object   
      String dest = "C:/itextExamples/fonts.pdf";   
      PdfWriter writer = new PdfWriter(dest);             
   
      // Creating a PdfDocument object      
      PdfDocument pdf = new PdfDocument(writer);                   
   
      // Creating a Document object       
      Document doc = new Document(pdf);
   
      // Creating text object       
      Text text1 = new Text("Tutorialspoint");              
   
      // Setting font of the text       
      PdfFont font = PdfFontFactory.createFont(FontConstants.HELVETICA_BOLD);       
      text1.setFont(font);                 
   
      // Setting font color
      text1.setFontColor(Color.GREEN);
   
      // Creating text object
      Text text2 = new Text("Simply Easy Learning");
      text2.setFont(PdfFontFactory.createFont(FontConstants.HELVETICA));         
      
      // Setting font color
      text2.setFontColor(Color.BLUE);
      
      // Creating Paragraph
      Paragraph paragraph1 = new Paragraph();
      
      // Adding text1 to the paragraph
      paragraph1.add(text1);
      paragraph1.add(text2);
      
      // Adding paragraphs to the document
      doc.add(paragraph1);
      doc.close();       
      
      System.out.println("Text added to pdf ..");   
   }     
}   

使用以下命令从命令提示符编译并执行保存的 Java 文件:

javac FormatingTheText.java 
java FormatingTheText 

执行后,上述程序将创建一个显示以下消息的 PDF 文档。

Text added to pdf ..

如果验证指定的路径,您可以找到创建的 PDF 文档,如下所示。

Fonts
广告