Example usage for Java javax.imageio ImageWriter fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addIIOWriteProgressListener(IIOWriteProgressListener listener) Adds an IIOWriteProgressListener to the list of registered progress listeners. |
void | addIIOWriteWarningListener(IIOWriteWarningListener listener) Adds an IIOWriteWarningListener to the list of registered warning listeners. |
boolean | canInsertImage(int imageIndex) Returns true if the writer supports the insertion of a new image at the given index. |
void | dispose() Allows any resources held by this object to be released. |
void | endWriteSequence() Completes the writing of a sequence of images begun with prepareWriteSequence . |
Class> | getClass() Returns the runtime class of this Object . |
IIOMetadata | getDefaultImageMetadata(ImageTypeSpecifier imageType, ImageWriteParam param) Returns an IIOMetadata object containing default values for encoding an image of the given type. |
IIOMetadata | getDefaultStreamMetadata(ImageWriteParam param) Returns an IIOMetadata object containing default values for encoding a stream of images. |
ImageWriteParam | getDefaultWriteParam() Returns a new ImageWriteParam object of the appropriate type for this file format containing default values, that is, those values that would be used if no ImageWriteParam object were specified. |
ImageWriterSpi | getOriginatingProvider() Returns the ImageWriterSpi object that created this ImageWriter , or null if this object was not created through the IIORegistry . |
void | prepareWriteSequence(IIOMetadata streamMetadata) Prepares a stream to accept a series of subsequent writeToSequence calls, using the provided stream metadata object. |
void | reset() Restores the ImageWriter to its initial state. |
void | setOutput(Object output) Sets the destination to the given ImageOutputStream or other Object . |
void | write(IIOImage image) Appends a complete image stream containing a single image with default metadata and thumbnails to the output. |
void | write(RenderedImage image) Appends a complete image stream consisting of a single image with default metadata and thumbnails to the output. |
void | write(IIOMetadata streamMetadata, IIOImage image, ImageWriteParam param) Appends a complete image stream containing a single image and associated stream and image metadata and thumbnails to the output. |
void | writeInsert(int imageIndex, IIOImage image, ImageWriteParam param) Inserts a new image into an existing image stream. |
void | writeToSequence(IIOImage image, ImageWriteParam param) Appends a single image and possibly associated metadata and thumbnails, to the output. |