Class DeferredProperty.ImageGeometry

java.lang.Object
org.apache.sis.internal.coverage.j2d.DeferredProperty.ImageGeometry
All Implemented Interfaces:
Function<RenderedImage,GridGeometry>
Enclosing class:
DeferredProperty

private static final class DeferredProperty.ImageGeometry extends Object implements Function<RenderedImage,GridGeometry>
A deferred property for computing the value of PlanarImage.GRID_GEOMETRY_KEY.
  • Field Details

    • grid

      private final GridGeometry grid
      The grid geometry of the grid coverage rendered as an image.
    • dimX

      private final int dimX
      The dimensions to keep from the coverage grid geometry.
    • dimY

      private final int dimY
      The dimensions to keep from the coverage grid geometry.
  • Constructor Details

    • ImageGeometry

      public ImageGeometry(GridGeometry grid, int[] dimensions)
      Creates a deferred property for an image grid geometry.
      Parameters:
      grid - the grid geometry of the grid coverage rendered as an image.
      dimensions - the dimensions to keep from the coverage grid geometry.
  • Method Details