Initializes a new instance with a Raster
Format indicating the desired order of the bands in the source
raster, and whether to maintain the source raster's format after
swizzling.
[Visual Basic .NET] |
---|
Public Function InitializeWithOrderAndBool( _
ByVal BandOrder As AgEStkGraphicsRasterFormat, _
ByVal MaintainImageFormat As Boolean _
) As IAgStkGraphicsBandOrderFilter
|
[C#] |
---|
public IAgStkGraphicsBandOrderFilter InitializeWithOrderAndBool(
|
[Managed C++] |
---|
public: IAgStkGraphicsBandOrderFilter^ InitializeWithOrderAndBool(
|
[Java] |
---|
public IAgStkGraphicsBandOrderFilter initializeWithOrderAndBool(
|
[Unmanaged C++] |
---|
public: HRESULT InitializeWithOrderAndBool(
|
- BandOrder
-
Member Value Description eStkGraphicsRasterFormatRed 0 The format of the Raster is a single band consisting of red values. eStkGraphicsRasterFormatGreen 1 The format of the Raster is a single band consisting of green values. eStkGraphicsRasterFormatBlue 2 The format of the Raster is a single band consisting of blue values. eStkGraphicsRasterFormatAlpha 3 The format of the Raster is a single band consisting of alpha values. eStkGraphicsRasterFormatRgb 4 The format of the Raster is three bands consisting of red, green, and blue values. eStkGraphicsRasterFormatBgr 5 The format of the Raster is three bands consisting of blue, green, and red values. eStkGraphicsRasterFormatRgba 6 The format of the Raster is four bands consisting of red, green, blue, and alpha values. eStkGraphicsRasterFormatBgra 7 The format of the Raster is four bands consisting of blue, green, red, and alpha values. eStkGraphicsRasterFormatLuminance 8 The format of the Raster is a single band consisting of luminance values. eStkGraphicsRasterFormatLuminanceAlpha 9 The format of the Raster is two bands consisting of luminance and alpha values. - MaintainImageFormat
- true to maintain the source raster's format after swizzling; otherwise, false.