Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Rendering Example 
 

In this section, you will learn how to make a program by which you can make a render page. iText api provides a method setTextRenderMode(int mode,float strokeWidth,Color strokeColor).We can gives various color and int mode.

 

Rendering Example

                         

In this section, you will learn how to make a program by which you can make a render page. iText api provides a method setTextRenderMode(int mode,float strokeWidth,Color strokeColor).We can gives various color and int mode.   

Code Description:
 
In this example we are using setTextRenderMode(int mode,float strokeWidth,Color strokeColor) method for define the strokeWidth , stokeColor and the mode. We are giving more details about this method following:
setTextRenderMode(int mode,Color strokeColor):

   
With the setTextRenderMode(int mode,float strokeWidth,Color strokeColor) we can change the outline of the text.We are passing here three parameters. First is  int  mode it can  be one of the following values:

  1. PdfContentByte.TEXT_RENDER_MODE_FILL:The mode is used for  glyphs fontcolor, the strokeWidth and strokeColor don't play a role here.
  2. PdfContentByte.TEXT_RENDER_MODE_STROKE: We will only see the outline of the glyphs, with the given strokeWidth and strokeColor.
  3. PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE: The glyphs will be filled with the fontcolor and will have an outline with the given strokeWidth and strokeColor.
  4. PdfContentByte.TEXT_RENDER_MODE_INVISIBLE: The glyphs will be invisible.

The second  one is stroke Color to set the  color of the text.

setTextRenderMode(int mode,float strokeWidth,Color strokeColor):
   
With the setTextRenderMode(int mode,float strokeWidth,Color strokeColor) we can change the outline of the text.We are passing here three parameters. First is  int  mode it can  be one of the following values:

  1. PdfContentByte.TEXT_RENDER_MODE_FILL:The mode is used for  glyphs fontcolor, the strokeWidth and strokeColor don't play a role here.
  2. PdfContentByte.TEXT_RENDER_MODE_STROKE: We will only see the outline of the glyphs, with the given strokeWidth and strokeColor.
  3. PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE: The glyphs will be filled with the fontcolor and will have an outline with the given strokeWidth and strokeColor.
  4. PdfContentByte.TEXT_RENDER_MODE_INVISIBLE: The glyphs will be invisible.

The second  strokeWidth and the thread one is stroke Color to set the width of and color of the text.

The code of the program is given below:

import java.awt.Color;
import java.io.FileOutputStream;
import java.io.IOException;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfWriter;
public class exampleOFRendering 
          {
  public static void main(String[] args)throws Exception
              {
    System.out.println("Example of Rendering");    
    Document document = new Document();
    PdfWriter.getInstance(document,
new FileOutputStream
("Rendering.pdf"));
      document.open();
      Paragraph p = new Paragraph("Rose Text Rendering:");
      document.add(p);
      Chunk chunk = new Chunk("Rendering Test");
      chunk.setTextRenderMode(PdfContentByte.
TEXT_RENDER_MODE_FILL, 
100fnew Color(0xc00x000x0f));
      document.add(chunk);
      document.add(Chunk.NEWLINE);
      chunk.setTextRenderMode(PdfContentByte.
TEXT_RENDER_MODE_FILL_STROKE, 
0.3fnew Color(0xFc0x000x00));
      document.add(chunk);
      document.add(Chunk.NEWLINE);
      chunk.setTextRenderMode(PdfContentByte.
TEXT_RENDER_MODE_INVISIBLE, 
100fnew Color(0x0c0xF00x00));
      document.add(chunk);
      document.add(Chunk.NEWLINE);
      chunk.setTextRenderMode(PdfContentByte.
TEXT_RENDER_MODE_FILL_STROKE, 
0.3fnew Color(0x0c0x000xF0));
      document.add(chunk);
      document.add(Chunk.NEWLINE);
      Chunk bold = new Chunk("This looks like STROKE for Bold look");
      bold.setTextRenderMode(PdfContentByte.
TEXT_RENDER_MODE_FILL_STROKE, 
0.5fnew Color(0x0c0x000x00));
            document.add(bold);
            document.close();
  }
}

The output of the program is given below:

Download this example.

 

                         

» View all related tutorials
Related Tags: c web pdf file stl text application import jar diff io make packages port this package itext app if tex

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.