org.apache.fop.render
Interface Graphics2DAdapter
- AbstractGraphics2DAdapter, AFPGraphics2DAdapter, Java2DGraphics2DAdapter, PCLGraphics2DAdapter, PDFGraphics2DAdapter, PSGraphics2DAdapter
public interface Graphics2DAdapter
This interface represents an optional feature that can be provided by
a renderer. It is exposed by calling the getGraphics2DAdapter() method
on the renderer. Renderers that support this feature allow painting
of arbitrary images through a Graphics2D instance.
void | paintImage(Graphics2DImagePainter painter, RendererContext context, int x, int y, int width, int height) - Use the variant with the Graphics2DImagePainter from XML Graphics Commons instead
|
void | paintImage(org.apache.xmlgraphics.java2d.Graphics2DImagePainter painter, RendererContext context, int x, int y, int width, int height) - Paints an arbitrary images on a given Graphics2D instance.
|
paintImage
public void paintImage(Graphics2DImagePainter painter,
RendererContext context,
int x,
int y,
int width,
int height)
throws IOException
Use the variant with the Graphics2DImagePainter from XML Graphics Commons instead
Paints an arbitrary images on a given Graphics2D instance. The renderer
providing this functionality must set up a Graphics2D instance so that
the image with the given extents (in mpt) can be painted by the painter
passed to this method. The Graphics2DImagePainter is then passed this
Graphics2D instance so the image can be painted.
painter
- the painter which will paint the actual imagecontext
- the renderer context for the current rendererx
- X position of the imagey
- Y position of the imagewidth
- width of the imageheight
- height of the image
paintImage
public void paintImage(org.apache.xmlgraphics.java2d.Graphics2DImagePainter painter,
RendererContext context,
int x,
int y,
int width,
int height)
throws IOException
Paints an arbitrary images on a given Graphics2D instance. The renderer
providing this functionality must set up a Graphics2D instance so that
the image with the given extents (in mpt) can be painted by the painter
passed to this method. The Graphics2DImagePainter is then passed this
Graphics2D instance so the image can be painted.
painter
- the painter which will paint the actual imagecontext
- the renderer context for the current rendererx
- X position of the imagey
- Y position of the imagewidth
- width of the imageheight
- height of the image
Copyright 1999-2008 The Apache Software Foundation. All Rights Reserved.