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 |
Resource ⇒ BufferedImage |
Here raw bytes represent the image of a *.gif, *.png or
// file to BufferedImage import java.awt.image. BufferedImage; import java.io.File; import javax.imageio.ImageIO; ... BufferedImage image = ImageIO.read( new File( "rabbit.jpg" ) );
// 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.
This page is posted |
http://mindprod.com/jgloss/imageio.html | |
Optional Replicator mirror
|
J:\mindprod\jgloss\imageio.html | |
Please read the feedback from other visitors,
or send your own feedback about the site. Contact Roedy. Please feel free to link to this page without explicit permission. | ||
Canadian
Mind
Products
IP:[65.110.21.43] Your face IP:[18.188.119.67] |
| |
Feedback |
You are visitor number | |