Uses of Class
org.mapfish.print.RenderingContext

Packages that use RenderingContext
org.mapfish.print   
org.mapfish.print.config.layout   
org.mapfish.print.map   
org.mapfish.print.map.readers   
org.mapfish.print.map.renderers   
org.mapfish.print.map.renderers.vector   
 

Uses of RenderingContext in org.mapfish.print
 

Methods in org.mapfish.print that return RenderingContext
 RenderingContext MapPrinter.print(java.lang.String spec, java.io.OutputStream outFile, java.lang.String referer)
          Generate the PDF using the given spec.
 

Methods in org.mapfish.print with parameters of type RenderingContext
static com.lowagie.text.pdf.PdfPTable PDFUtils.buildTable(java.util.List<Block> items, PJsonObject params, RenderingContext context, int nbColumns, TableConfig tableConfig)
          Creates a PDF table with the given items.
static com.lowagie.text.pdf.PdfPCell PDFUtils.createCell(PJsonObject params, RenderingContext context, Block block, int row, int col, int nbRows, int nbCols, TableConfig tableConfig)
          Create a PDF table cell with support for styling using the CellConfig stuff.
static com.lowagie.text.Image PDFUtils.createImage(RenderingContext context, double maxWidth, double maxHeight, java.net.URI url, float rotation)
           
static com.lowagie.text.Chunk PDFUtils.createImageChunk(RenderingContext context, double maxWidth, double maxHeight, java.net.URI url, float rotation)
           
static java.lang.String PDFUtils.evalString(RenderingContext context, PJsonObject params, java.lang.String val)
          Evaluates stuff like "toto ${titi}"
static com.lowagie.text.Image PDFUtils.getImage(RenderingContext context, java.net.URI uri, float w, float h)
          Gets an iText image with a cache that uses PdfTemplates to re-use the same bitmap content multiple times in order to reduce the file size.
protected static com.lowagie.text.Image PDFUtils.getImageDirect(RenderingContext context, java.net.URI uri)
          Gets an iText image.
static com.lowagie.text.Phrase PDFUtils.renderString(RenderingContext context, PJsonObject params, java.lang.String val, com.lowagie.text.Font font)
           
 

Constructors in org.mapfish.print with parameters of type RenderingContext
PDFCustomBlocks(com.lowagie.text.pdf.PdfWriter writer, RenderingContext context)
           
 

Uses of RenderingContext in org.mapfish.print.config.layout
 

Methods in org.mapfish.print.config.layout with parameters of type RenderingContext
 void TableConfig.apply(com.lowagie.text.pdf.PdfPCell cell, int row, int col, int nbRows, int nbCols, RenderingContext context, PJsonObject params)
           
protected  void CellConfig.apply(com.lowagie.text.pdf.PdfPCell cell, RenderingContext context, PJsonObject params)
           
 com.lowagie.text.pdf.PdfPCell ColumnDef.createContentPdfCell(PJsonObject params, RenderingContext context, int row, int col, int nbRows, int nbCols, TableConfig config)
           
 com.lowagie.text.pdf.PdfPCell ColumnDef.createHeaderPdfCell(PJsonObject params, RenderingContext context, int col, int nbRows, int nbCols, TableConfig config)
           
 Transformer MapBlock.createTransformer(RenderingContext context, PJsonObject params)
          Creates the transformer in function of the JSON parameters and the block's config
 int MapBlock.getAbsoluteX(RenderingContext context, PJsonObject params)
           
 int MapBlock.getAbsoluteY(RenderingContext context, PJsonObject params)
           
 java.awt.Color Block.getBackgroundColorVal(RenderingContext context, PJsonObject params)
           
 java.awt.Color CellConfig.getBackgroundColorVal(RenderingContext context, PJsonObject params)
           
 java.awt.Color BorderConfig.getBorderColorBottomVal(RenderingContext context, PJsonObject params)
           
 java.awt.Color BorderConfig.getBorderColorLeftVal(RenderingContext context, PJsonObject params)
           
 java.awt.Color BorderConfig.getBorderColorRightVal(RenderingContext context, PJsonObject params)
           
 java.awt.Color BorderConfig.getBorderColorTopVal(RenderingContext context, PJsonObject params)
           
 com.lowagie.text.Rectangle Layout.getFirstPageSize(RenderingContext context, PJsonObject params)
           
 int MapBlock.getHeight(RenderingContext context, PJsonObject params)
           
 int Page.getMarginBottom(RenderingContext context, PJsonObject params)
           
 int Page.getMarginLeft(RenderingContext context, PJsonObject params)
           
 int Page.getMarginRight(RenderingContext context, PJsonObject params)
           
 int Page.getMarginTop(RenderingContext context, PJsonObject params)
           
 java.lang.String Page.getPageSize(RenderingContext context, PJsonObject params)
           
 com.lowagie.text.Rectangle Page.getPageSizeRect(RenderingContext context, PJsonObject params)
           
 int MapBlock.getWidth(RenderingContext context, PJsonObject params)
           
 boolean Block.isVisible(RenderingContext context, PJsonObject params)
           
 boolean ColumnDef.isVisible(RenderingContext context, PJsonObject params)
           
 void ColumnsBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
abstract  void Block.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
          Called when the block is rendered.
 void LegendsBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void ImageBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void TextBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void MapBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void ScalebarBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void AttributesBlock.render(PJsonObject params, Block.PdfElement target, RenderingContext context)
           
 void Layout.render(PJsonObject params, RenderingContext context)
           
 void MainPage.render(PJsonObject params, RenderingContext context)
          Called for each map requested by the client.
 void Page.render(PJsonObject params, RenderingContext context)
           
 void MetaData.render(PJsonObject params, RenderingContext context)
           
 void HeaderFooter.render(com.lowagie.text.Rectangle rectangle, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject params, RenderingContext context)
           
 

Uses of RenderingContext in org.mapfish.print.map
 

Methods in org.mapfish.print.map with parameters of type RenderingContext
 boolean MapTileTask.handleException(RenderingContext context)
           
 

Constructors in org.mapfish.print.map with parameters of type RenderingContext
MapChunkDrawer(PDFCustomBlocks customBlocks, Transformer transformer, double overviewMap, PJsonObject params, RenderingContext context, java.awt.Color backgroundColor, java.lang.String name)
           
ParallelMapTileLoader(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc)
           
 

Uses of RenderingContext in org.mapfish.print.map.readers
 

Fields in org.mapfish.print.map.readers declared as RenderingContext
protected  RenderingContext HTTPMapReader.context
           
 

Methods in org.mapfish.print.map.readers with parameters of type RenderingContext
protected static void MapServerMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
protected static void OsmMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
protected static void WMSMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
protected static void TileCacheMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
static void ImageMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
static void VectorMapReader.create(java.util.List<MapReader> target, RenderingContext context, PJsonObject params)
           
static void MapReader.create(java.util.List<MapReader> target, java.lang.String type, RenderingContext context, PJsonObject params)
           
static WMSServerInfo WMSServerInfo.getInfo(java.net.URI uri, RenderingContext context)
           
 

Constructors in org.mapfish.print.map.readers with parameters of type RenderingContext
HTTPMapReader(RenderingContext context, PJsonObject params)
           
ImageMapReader(RenderingContext context, PJsonObject params)
           
OsmMapReader(java.lang.String layer, RenderingContext context, PJsonObject params)
           
TileableMapReader(RenderingContext context, PJsonObject params)
           
VectorMapReader(RenderingContext context, PJsonObject params)
           
 

Uses of RenderingContext in org.mapfish.print.map.renderers
 

Methods in org.mapfish.print.map.renderers with parameters of type RenderingContext
 void SVGTileRenderer.render(Transformer transformer, java.util.List<java.net.URI> uris, ParallelMapTileLoader parallelMapTileLoader, RenderingContext context, float opacity, int nbTilesHorizontal, float offsetX, float offsetY, long bitmapTileW, long bitmapTileH)
           
 void BitmapTileRenderer.render(Transformer transformer, java.util.List<java.net.URI> uris, ParallelMapTileLoader parallelMapTileLoader, RenderingContext context, float opacity, int nbTilesHorizontal, float offsetX, float offsetY, long bitmapTileW, long bitmapTileH)
           
 void PDFTileRenderer.render(Transformer transformer, java.util.List<java.net.URI> uris, ParallelMapTileLoader parallelMapTileLoader, RenderingContext context, float opacity, int nbTilesHorizontal, float offsetX, float offsetY, long bitmapTileW, long bitmapTileH)
           
abstract  void TileRenderer.render(Transformer transformer, java.util.List<java.net.URI> urls, ParallelMapTileLoader parallelMapTileLoader, RenderingContext context, float opacity, int nbTilesHorizontal, float offsetX, float offsetY, long bitmapTileW, long bitmapTileH)
           
 

Uses of RenderingContext in org.mapfish.print.map.renderers.vector
 

Methods in org.mapfish.print.map.renderers.vector with parameters of type RenderingContext
protected static void LineStringRenderer.applyStyle(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject style, com.lowagie.text.pdf.PdfGState state)
           
static void FeaturesRenderer.render(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, org.mapfish.geo.MfGeo geo)
           
protected static void GeometriesRenderer.render(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject style, com.vividsolutions.jts.geom.Geometry geometry)
           
protected  void LineStringRenderer.renderImpl(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject style, com.vividsolutions.jts.geom.LineString geometry)
           
protected  void PointRenderer.renderImpl(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject style, com.vividsolutions.jts.geom.Point geometry)
           
protected abstract  void GeometriesRenderer.renderImpl(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, PJsonObject style, T geometry)
           
protected abstract  void FeaturesRenderer.renderImpl(RenderingContext context, com.lowagie.text.pdf.PdfContentByte dc, T geo)
           
 



Copyright © 2009 Camptocamp SA. All Rights Reserved.