Home Java Example Java Swing Graphics2D Show Image Reader and Image Writer by image format



Show Image Reader and Image Writer by image format
Posted on: October 15, 2008 at 12:00 AM
This section illustrates you how to display the Image Reader and Image Writer by the image format.

Show Image Reader and Image Writer by image format

     

This section illustrates you how to display the Image Reader and Image Writer by the image format. 

To show the image reader and image writer, we have used ImageIO class of the package javax.imageio.*. The ImageIO class provides methods for locating ImageReaders and ImageWriters.

The method getReaderFormatNames() of class ImageIO returns an array of strings consisting of all the image format names which the current set of registered readers understands. The method getWriterFormatNames() returns an array of strings consisting of all the image format names which the current set of registered writers understands.

Here is the code of ShowImageIOReaderAndWriter.java

import javax.imageio.*;

public class ShowImageIOReaderAndWriter {
  static public void main(String args[]) throws Exception{
  String reader[] = ImageIO.getReaderFormatNames();
  for (int k = 0; k < reader.length; k++) {
  System.out.println("reader " + reader[k]);
  }
  reader = ImageIO.getWriterFormatNames();
  for (int k = 0; k < reader.length; k++) {
  System.out.println("writer " + reader[k]);
  }
  }
}

Output will be displayed on the console:

Download source code

Related Tags for Show Image Reader and Image Writer by image format:
cimageormformioformatdisplayreadthiswritefortoeilreaderitsectionsplimrmmplaytrispadesagehowraterateswritersspatislleaandstrssrithstdispmageplndono


More Tutorials from this section

Ask Questions?    Discuss: Show Image Reader and Image Writer by image format  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.