fop 1.0

Uses of Interface
org.apache.fop.render.RenderingContext

Packages that use RenderingContext
org.apache.fop.render Generic renderer interface. 
org.apache.fop.render.afp An AFP Renderer implementation and supporting classes. 
org.apache.fop.render.intermediate   
org.apache.fop.render.java2d Java2D Renderer which paints rendered pages on Graphics2D instances. 
org.apache.fop.render.pcl PCL Renderer (Supports PCL5 and HP GL/2) 
org.apache.fop.render.pdf PDF Renderer 
org.apache.fop.render.ps PostScript Renderer 
org.apache.fop.render.svg SVG (Structured Vector Graphics) Renderer 
 

Uses of RenderingContext in org.apache.fop.render
 

Classes in org.apache.fop.render that implement RenderingContext
 class AbstractRenderingContext
          Abstract base class for RenderingContext implementations.
 

Methods in org.apache.fop.render with parameters of type RenderingContext
 boolean ImageHandler.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed.
 void ImageHandler.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 ImageHandler ImageHandlerRegistry.getHandler(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Returns an ImageHandler which handles an specific image type given the MIME type of the image.
 org.apache.xmlgraphics.image.loader.ImageFlavor[] ImageHandlerRegistry.getSupportedFlavors(RenderingContext context)
          Returns the ordered array of supported image flavors.
 

Uses of RenderingContext in org.apache.fop.render.afp
 

Classes in org.apache.fop.render.afp that implement RenderingContext
 class AFPRenderingContext
          Rendering context for AFP (MO:DCA) production.
 

Methods in org.apache.fop.render.afp that return RenderingContext
protected  RenderingContext AFPPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.afp with parameters of type RenderingContext
 boolean AFPImageHandlerRawCCITTFax.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void AFPImageHandlerSVG.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean AFPImageHandlerSVG.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void AFPImageHandlerGraphics2D.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean AFPImageHandlerGraphics2D.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void AFPImageHandlerRenderedImage.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean AFPImageHandlerRenderedImage.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void AbstractAFPImageHandlerRawStream.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean AFPImageHandlerRawStream.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 

Uses of RenderingContext in org.apache.fop.render.intermediate
 

Methods in org.apache.fop.render.intermediate that return RenderingContext
protected abstract  RenderingContext AbstractIFPainter.createRenderingContext()
          Creates a new RenderingContext instance.
protected  RenderingContext IFSerializer.createRenderingContext()
          {@inheritDoc}
 

Methods in org.apache.fop.render.intermediate with parameters of type RenderingContext
protected  void AbstractIFPainter.drawImage(org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle rect, RenderingContext context)
          Draws an image using a suitable image handler.
protected  void AbstractIFPainter.drawImage(org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle rect, RenderingContext context, boolean convert, java.util.Map additionalHints)
          Draws an image using a suitable image handler.
 

Uses of RenderingContext in org.apache.fop.render.java2d
 

Classes in org.apache.fop.render.java2d that implement RenderingContext
 class Java2DRenderingContext
          Rendering context for Java2D painting.
 

Methods in org.apache.fop.render.java2d that return RenderingContext
protected  RenderingContext Java2DPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.java2d with parameters of type RenderingContext
 void Java2DImageHandlerRenderedImage.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean Java2DImageHandlerRenderedImage.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void Java2DImageHandlerGraphics2D.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean Java2DImageHandlerGraphics2D.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 

Uses of RenderingContext in org.apache.fop.render.pcl
 

Classes in org.apache.fop.render.pcl that implement RenderingContext
 class PCLRenderingContext
          Rendering context for PCL production.
 

Methods in org.apache.fop.render.pcl that return RenderingContext
protected  RenderingContext PCLPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.pcl with parameters of type RenderingContext
 void PCLImageHandlerGraphics2D.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PCLImageHandlerGraphics2D.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PCLImageHandlerRenderedImage.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PCLImageHandlerRenderedImage.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 

Uses of RenderingContext in org.apache.fop.render.pdf
 

Classes in org.apache.fop.render.pdf that implement RenderingContext
 class PDFRenderingContext
          Rendering context for PDF production.
 

Methods in org.apache.fop.render.pdf that return RenderingContext
protected  RenderingContext PDFPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.pdf with parameters of type RenderingContext
 void PDFImageHandlerRawJPEG.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PDFImageHandlerRawJPEG.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PDFImageHandlerGraphics2D.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PDFImageHandlerGraphics2D.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PDFImageHandlerRenderedImage.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PDFImageHandlerRenderedImage.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PDFImageHandlerSVG.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PDFImageHandlerSVG.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PDFImageHandlerRawCCITTFax.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PDFImageHandlerRawCCITTFax.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 

Uses of RenderingContext in org.apache.fop.render.ps
 

Classes in org.apache.fop.render.ps that implement RenderingContext
 class PSRenderingContext
          Rendering context for PostScript production.
 

Methods in org.apache.fop.render.ps that return RenderingContext
protected  RenderingContext PSPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.ps with parameters of type RenderingContext
 void PSImageHandlerSVG.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PSImageHandlerSVG.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PSImageHandlerRawCCITTFax.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 void PSImageHandlerRawCCITTFax.generateForm(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, PSImageFormResource form)
          Generates a PostScript form for the given Image instance.
 boolean PSImageHandlerRawCCITTFax.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PSImageHandlerEPS.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean PSImageHandlerEPS.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PSImageHandlerRawJPEG.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 void PSImageHandlerRawJPEG.generateForm(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, PSImageFormResource form)
          Generates a PostScript form for the given Image instance.
 boolean PSImageHandlerRawJPEG.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PSImageHandler.generateForm(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, PSImageFormResource form)
          Generates a PostScript form for the given Image instance.
 void PSImageHandlerRenderedImage.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 void PSImageHandlerRenderedImage.generateForm(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, PSImageFormResource form)
          Generates a PostScript form for the given Image instance.
 boolean PSImageHandlerRenderedImage.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void PSImageHandlerGraphics2D.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 void PSImageHandlerGraphics2D.generateForm(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, PSImageFormResource form)
          Generates a PostScript form for the given Image instance.
 boolean PSImageHandlerGraphics2D.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 

Uses of RenderingContext in org.apache.fop.render.svg
 

Classes in org.apache.fop.render.svg that implement RenderingContext
 class SVGRenderingContext
          Rendering context for SVG production.
 

Methods in org.apache.fop.render.svg that return RenderingContext
protected  RenderingContext SVGPainter.createRenderingContext()
          Creates a new RenderingContext instance.
 

Methods in org.apache.fop.render.svg with parameters of type RenderingContext
 void EmbeddedSVGImageHandler.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean EmbeddedSVGImageHandler.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 void SVGDataUrlImageHandler.handleImage(RenderingContext context, org.apache.xmlgraphics.image.loader.Image image, java.awt.Rectangle pos)
          Handles the given Image instance painting it at the indicated position in the output format being generated.
 boolean SVGDataUrlImageHandler.isCompatible(RenderingContext targetContext, org.apache.xmlgraphics.image.loader.Image image)
          Indicates whether the image handler is compatible with the indicated target represented by the rendering context object and with the image to be processed. The image is also passed as a parameter because a handler might not support every subtype of image that is presented. For example: in the case of ImageXMLDOM, the image might carry an SVG or some other XML format. One handler might only handle SVG but no other XML format.
 


fop 1.0

Copyright 1999-2010 The Apache Software Foundation. All Rights Reserved.