| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use ImageWriter | |
| javax.imageio | The main package of the Java Image I/O API. | 
| javax.imageio.event | A package of the Java Image I/O API dealing with synchronous notification of events during the reading and writing of images. | 
| javax.imageio.spi | A package of the Java Image I/O API containing the plug-in interfaces for readers, writers, transcoders, and streams, and a runtime registry. | 
| Uses of ImageWriter in javax.imageio | 
| Methods in javax.imageio that return ImageWriter | |
static ImageWriter | 
ImageIO.getImageWriter(ImageReader reader)
Returns an ImageWritercorresponding to the given
 ImageReader, if there is one, or null
 if the plug-in for this ImageReader does not
 specify a corresponding ImageWriter, or if the
 given ImageReader is not registered. | 
| Methods in javax.imageio with parameters of type ImageWriter | |
static ImageReader | 
ImageIO.getImageReader(ImageWriter writer)
Returns an ImageReadercorresponding to the given
 ImageWriter, if there is one, or null
 if the plug-in for this ImageWriter does not
 specify a corresponding ImageReader, or if the
 given ImageWriter is not registered. | 
static Iterator | 
ImageIO.getImageTranscoders(ImageReader reader,
                    ImageWriter writer)
Returns an Iterator containing all currently
 registered ImageTranscoders that claim to be
 able to transcode between the metadata of the given
 ImageReader and ImageWriter. | 
| Uses of ImageWriter in javax.imageio.event | 
| Methods in javax.imageio.event with parameters of type ImageWriter | |
 void | 
IIOWriteProgressListener.imageStarted(ImageWriter source,
             int imageIndex)
Reports that an image write operation is beginning.  | 
 void | 
IIOWriteProgressListener.imageProgress(ImageWriter source,
              float percentageDone)
Reports the approximate degree of completion of the current write call within the associated
 ImageWriter. | 
 void | 
IIOWriteProgressListener.imageComplete(ImageWriter source)
Reports that the image write operation has completed.  | 
 void | 
IIOWriteProgressListener.thumbnailStarted(ImageWriter source,
                 int imageIndex,
                 int thumbnailIndex)
Reports that a thumbnail write operation is beginning.  | 
 void | 
IIOWriteProgressListener.thumbnailProgress(ImageWriter source,
                  float percentageDone)
Reports the approximate degree of completion of the current thumbnail write within the associated ImageWriter. | 
 void | 
IIOWriteProgressListener.thumbnailComplete(ImageWriter source)
Reports that a thumbnail write operation has completed.  | 
 void | 
IIOWriteProgressListener.writeAborted(ImageWriter source)
Reports that a write has been aborted via the writer's abort method. | 
 void | 
IIOWriteWarningListener.warningOccurred(ImageWriter source,
                int imageIndex,
                String warning)
Reports the occurence of a non-fatal error in encoding.  | 
| Uses of ImageWriter in javax.imageio.spi | 
| Methods in javax.imageio.spi that return ImageWriter | |
 ImageWriter | 
ImageWriterSpi.createWriterInstance()
Returns an instance of the ImageWriter
 implementation associated with this service provider. | 
abstract  ImageWriter | 
ImageWriterSpi.createWriterInstance(Object extension)
Returns an instance of the ImageWriter
 implementation associated with this service provider. | 
| Methods in javax.imageio.spi with parameters of type ImageWriter | |
 boolean | 
ImageWriterSpi.isOwnWriter(ImageWriter writer)
Returns true if the ImageWriter object
 passed in is an instance of the ImageWriter 
 associated with this service provider. | 
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.