ImageIO : Java Glossary

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 your platform:

Early versions of JAI (Java Advanced Imaging) 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 (Portable Network Graphics) support for it. This is not for injecting meta info.

Loading a BufferedImage from an URL (Uniform Resource Locator)

Converting Image to BufferedImage


for the much simpler ImageIO class, that will for example let you process TIFF (Tagged Image File Format) files with ImageIO.

Learning More

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

CMP homejump to top

available on the web at:

http://mindprod.com/jgloss/imageio.html
  

optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\imageio.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, especially when sending an ad-hominem attack, a rant composed mainly of obscenities or a death threat, please quote the offending passage and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. I can’t very well fix erroneous or ambiguous text if I can’t find it.
Blog
IP:[65.110.21.43]
Your face IP:[54.234.126.92]
You are visitor number 120,067.