Uses of Interface
java.awt.image.RenderedImage
Package
Description
Contains all of the classes for creating user interfaces and for painting
graphics and images.
Provides classes for creating and modifying images.
Provides classes and interfaces for producing rendering-independent images.
The main package of the Java Image I/O API.
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 RenderedImage in java.awt
Modifier and TypeMethodDescriptionabstract void
Graphics2D.drawRenderedImage
(RenderedImage img, AffineTransform xform) Renders aRenderedImage
, applying a transform from image space into user space before drawing. -
Uses of RenderedImage in java.awt.image
Modifier and TypeInterfaceDescriptioninterface
WritableRenderedImage is a common interface for objects which contain or can produce image data in the form of Rasters and which can be modified and/or written over.Modifier and TypeClassDescriptionclass
TheBufferedImage
subclass describes anImage
with an accessible buffer of image data.Modifier and TypeMethodDescriptionBufferedImage.getSources()
Returns aVector
ofRenderedImage
objects that are the immediate sources, not the sources of these immediate sources, of image data for thisBufferedImage
.RenderedImage.getSources()
Returns a vector of RenderedImages that are the immediate sources of image data for this RenderedImage. -
Uses of RenderedImage in java.awt.image.renderable
Modifier and TypeMethodDescriptionContextualRenderedImageFactory.create
(RenderContext renderContext, ParameterBlock paramBlock) Creates a rendering, given a RenderContext and a ParameterBlock containing the operation's sources and parameters.RenderedImageFactory.create
(ParameterBlock paramBlock, RenderingHints hints) Creates a RenderedImage representing the results of an imaging operation (or chain of operations) for a given ParameterBlock and RenderingHints.RenderableImage.createDefaultRendering()
Returns a RenderedImage instance of this image with a default width and height in pixels.RenderableImageOp.createDefaultRendering()
Gets a RenderedImage instance of this image with a default width and height in pixels.RenderableImage.createRendering
(RenderContext renderContext) Creates a RenderedImage that represented a rendering of this image using a given RenderContext.RenderableImageOp.createRendering
(RenderContext renderContext) Creates a RenderedImage which represents this RenderableImageOp (including its Renderable sources) rendered according to the given RenderContext.RenderableImage.createScaledRendering
(int w, int h, RenderingHints hints) Creates a RenderedImage instance of this image with width w, and height h in pixels.RenderableImageOp.createScaledRendering
(int w, int h, RenderingHints hints) Creates a RenderedImage instance of this image with width w, and height h in pixels.ParameterBlock.getRenderedSource
(int index) Returns a source as aRenderedImage
. -
Uses of RenderedImage in javax.imageio
Modifier and TypeFieldDescriptionprotected RenderedImage
IIOImage.image
TheRenderedImage
being referenced.Modifier and TypeMethodDescriptionIIOImage.getRenderedImage()
Returns the currently setRenderedImage
, ornull
if only aRaster
is available.ImageReader.readAsRenderedImage
(int imageIndex, ImageReadParam param) Returns aRenderedImage
object that contains the contents of the image indexed byimageIndex
.Modifier and TypeMethodDescriptionstatic ImageTypeSpecifier
ImageTypeSpecifier.createFromRenderedImage
(RenderedImage image) Returns anImageTypeSpecifier
that encodes the layout of aRenderedImage
(which may be aBufferedImage
).void
ImageWriter.replacePixels
(RenderedImage image, ImageWriteParam param) Replaces a portion of an image already present in the output with a portion of the given image.void
IIOImage.setRenderedImage
(RenderedImage image) Sets the currentRenderedImage
.static boolean
ImageIO.write
(RenderedImage im, String formatName, File output) Writes an image using an arbitraryImageWriter
that supports the given format to aFile
.static boolean
ImageIO.write
(RenderedImage im, String formatName, OutputStream output) Writes an image using an arbitraryImageWriter
that supports the given format to anOutputStream
.static boolean
ImageIO.write
(RenderedImage im, String formatName, ImageOutputStream output) Writes an image using an arbitraryImageWriter
that supports the given format to anImageOutputStream
.void
ImageWriter.write
(RenderedImage image) Appends a complete image stream consisting of a single image with default metadata and thumbnails to the output.ModifierConstructorDescriptionIIOImage
(RenderedImage image, List<? extends BufferedImage> thumbnails, IIOMetadata metadata) Constructs anIIOImage
containing aRenderedImage
, and thumbnails and metadata associated with it.ImageTypeSpecifier
(RenderedImage image) Constructs anImageTypeSpecifier
from aRenderedImage
. -
Uses of RenderedImage in javax.imageio.spi
Modifier and TypeMethodDescriptionboolean
ImageWriterSpi.canEncodeImage
(RenderedImage im) Returnstrue
if theImageWriter
implementation associated with this service provider is able to encode the givenRenderedImage
instance.