Provides access to members that control a raster info object.
Members
Name | Description | |
---|---|---|
AttributeTable | The raster attribute table. | |
BandCount | The number of bands in the Raster. | |
BlockHeight | The block height in pixels. | |
BlockWidth | The block width in pixels. | |
CellSize | The raster cell size. | |
Colormap | The raster colormap. | |
Extent | The raster extent. | |
FirstPyramidLevel | The first pyramid level. | |
Format | The raster format, e.g. TIFF, NITF, and etc. | |
GeodataXform | The raster GeoData transform. | |
Height | The raster height in pixels. | |
Histogram | The histogram of a given band. | |
Init | Initializes from a raster. | |
LODInfos | The tiling Levels Of Details. | |
MaximumCellSize | The maximum cell size associated with this raster. | |
MaximumPyramidLevel | The maximum pyramid level. | |
NativeExtent | The native raster extent before GeoData transform. | |
NativeSpatialReference | The native raster spatial reference before GeoData transform. | |
NoData | The NoData value used to indicate invalid or excluded data. | |
Origin | The tiling origin. | |
PixelResampler | The current raster resampler. | |
PixelType | The raster pixel type. | |
RemoveStatsHistograms | Removes all band statistics and histograms. | |
Resampling | Indicates if this raster source wants to perform resampling. | |
SpatialReference | The raster spatial reference. | |
Statistics | The statistics of a given band. | |
SupportBandSelection | Indicates if this function supports band selection. | |
Width | The raster width in pixels. |
IRasterInfo2.AttributeTable Property
The raster attribute table.
Public Property AttributeTable As ITable
public ITable AttributeTable {get; set;}
IRasterInfo2.Colormap Property
The raster colormap.
Public Property Colormap As IRasterColormap
public IRasterColormap Colormap {get; set;}
IRasterInfo2.Histogram Property
The histogram of a given band.
Public Function get_Histogram ( _
ByVal iBand As Integer _
) As IRasterHistogram
Public Sub set_Histogram ( _
ByVal iBand As Integer, _
ByVal ppHistogram As IRasterHistogram _
)
public IRasterHistogram get_Histogram (
int iBand
);
public void set_Histogram (
int iBand,
IRasterHistogram ppHistogram
);
IRasterInfo2.Init Method
Initializes from a raster.
Public Sub Init ( _
ByVal pRaster As IRaster _
)
public void Init (
IRaster pRaster
);
IRasterInfo2.LODInfos Property
The tiling Levels Of Details.
Public Property LODInfos As IRasterLODInfos
public IRasterLODInfos LODInfos {get; set;}
IRasterInfo2.MaximumCellSize Property
The maximum cell size associated with this raster.
Public Property MaximumCellSize As IPnt
public IPnt MaximumCellSize {get; set;}
IRasterInfo2.PixelResampler Property
The current raster resampler.
Public Property PixelResampler As IPixelResampler
public IPixelResampler PixelResampler {get; set;}
IRasterInfo2.RemoveStatsHistograms Method
Removes all band statistics and histograms.
Public Sub RemoveStatsHistograms ( _
)
public void RemoveStatsHistograms (
);
IRasterInfo2.Statistics Property
The statistics of a given band.
Public Function get_Statistics ( _
ByVal iBand As Integer _
) As IRasterStatistics
Public Sub set_Statistics ( _
ByVal iBand As Integer, _
ByVal ppStats As IRasterStatistics _
)
public IRasterStatistics get_Statistics (
int iBand
);
public void set_Statistics (
int iBand,
IRasterStatistics ppStats
);
Inherited Interfaces
Interfaces | Description |
---|---|
IRasterInfo | Provides access to members that control a raster info object. |
Classes that implement IRasterInfo2
Classes | Description |
---|---|
RasterInfo | A class for a raster info value object containing information about a raster. |