ImageIO : Java Glossary

home page I words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all) ©1996-2010 2006-02-13 Roedy Green, Canadian Mind Products
ImageIO
javax.imageio.ImageIO lets you save and restore Images to disk in a platform independent format. It works using plug-in modules that handle various formats including "gif", "png" and "jpeg" (all lower case, or all upper case, but not mixed). "jpeg" or "jpg" is acceptable. Use ImageIO. getWriterFormatNames() to find out which types are supported on

Early versions of JAI did not support writing gif images, because at the time the format was proprietary. Now the patent has expired.

With ImageIO, instead of Image you use BufferedImage which is a subclass of Image, and can thus be used in any of the familiar tools that work with Images. Introduced with Java 1.4.

raw bytes ⇒ BufferedImage URL ⇒ BufferedImage
Image ⇒ raw bytes Image ⇒ BufferedImage
File ⇒ BufferedImage Learning More
BufferedImage ⇒ File Links

Loading an Image from raw bytes

Here raw bytes represent the image of a *.gif, *.png or

Saving an Image to raw bytes

Loading a BufferedImage from a file

// file to BufferedImage
import java.awt.image. BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
...
BufferedImage image = ImageIO.read( new File( "rabbit.jpg" ) );

Saving a BufferedImage to a file

// BufferedImage to File
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
...
ImageIO.write( aBufferedImage, "jpeg" /* "png" "jpeg" ... format desired */,
               new File ( "snap.jpg" ) /* target */ );

ImageWriteParam is a way of controlling exactly how the image in encoded. There is currently no PNG support for it. This is not for injecting meta info.

Loading a BufferedImage from an URL

Converting Image to BufferedImage

JAI has a set of

for the much simpler ImageIO class, that will for example let you process TIFF files with ImageIO.

Learning More

Sun’s JDK Technote Guide on imageio packages : available:
Sun’s Javadoc on ImageIO class : available:
Sun’s Javadoc on ImageReader class : available:
Sun’s Javadoc on ImageReadParam class : available:
Sun’s Javadoc on ImageWriteParam class : available:
Sun’s Javadoc on ImageWriter class : available:

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/imageio.html J:\mindprod\jgloss\imageio.html
CMP logofeedback Please email your feedback for publication, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.191.111]
You are visitor number 72,468.