org.apache.fop.render
Interface ImageAdapter
- All Known Implementing Classes:
- PSRenderer
public interface ImageAdapter
This interface represents an optional feature that can be provided by
a renderer. It is exposed by calling the getImageAdapter() method
on the renderer. Renderers that support this feature allow painting
of images (RendererImage instances).
Method Summary |
void |
paintImage(java.awt.image.RenderedImage image,
RendererContext context,
int x,
int y,
int width,
int height)
Paints an image at the given position. |
paintImage
void paintImage(java.awt.image.RenderedImage image,
RendererContext context,
int x,
int y,
int width,
int height)
throws java.io.IOException
- Paints an image at the given position.
- Parameters:
image
- the image which will be paintedcontext
- the renderer context for the current rendererx
- X position of the image (in millipoints)y
- Y position of the image (in millipoints)width
- width of the image (in millipoints)height
- height of the image (in millipoints)
- Throws:
java.io.IOException
- In case of an I/O error while writing the output format
Copyright 1999-2010 The Apache Software Foundation. All Rights Reserved.