Provides access to members that control the pyramids for a raster dataset.
Members
Name | Description | |
---|---|---|
Create | Build raster pyramids for this raster. | |
MinimumSize | The minimum raster pyramid size. | |
Present | Indicates whether pyramid layers exist. |
IRasterPyramid.Create Method
Build raster pyramids for this raster.
Public Sub Create ( _
)
public void Create (
);
IRasterPyramid.MinimumSize Property
The minimum raster pyramid size.
Public Property MinimumSize As IPnt
public IPnt MinimumSize {get; set;}
IRasterPyramid.Present Property
Indicates whether pyramid layers exist.
Public ReadOnly Property Present As Boolean
public bool Present {get;}
Classes that implement IRasterPyramid
Classes | Description |
---|---|
RasterBand | A representation of a single band of a raster dataset on disk. |
RasterDataset | A representation of a raster dataset on disk. |
Remarks
The _MinimumSize_property is used to specify the smallest size for which pyramids will be built automatically for certain operations such as SaveAs. For datasets larger than this size, pyramids will be created when you save the dataset to another raster format. If you don�t want the pyramids to be created during SaveAs, simply set a size bigger than the raster dataset.