ArcObjects Library Reference (DataSourcesRaster)  

IPixelResampler.Resample Method

Resamples an input pixel block into an output pixel block.

[Visual Basic .NET]
Public Sub Resample ( _
    ByVal iCol As Integer, _
    ByVal iRow As Integer, _
    ByVal nCols As Integer, _
    ByVal nRows As Integer, _
    ByRef points As WKSPoint, _
    ByVal ulx As Double, _
    ByVal uly As Double, _
    ByVal dx As Double, _
    ByVal dy As Double, _
    ByVal pSrcPixelBlock As IPixelBlock, _
    ByVal pDstPixelBlock As IPixelBlock _
)
[C#]
public void Resample (
    int iCol,
    int iRow,
    int nCols,
    int nRows,
    ref WKSPoint points,
    ref double ulx,
    ref double uly,
    ref double dx,
    ref double dy,
    ref IPixelBlock pSrcPixelBlock,
    ref IPixelBlock pDstPixelBlock
);
[C++]
HRESULT Resample(
  long iCol,
  long iRow,
  long nCols,
  long nRows,
  _WKSPoint* points,
  double ulx,
  double uly,
  double dx,
  double dy,
  IPixelBlock* pSrcPixelBlock,
  IPixelBlock* pDstPixelBlock
);
[C++]

Parameters

iCol [in]   iCol is a parameter of type long iRow [in]   iRow is a parameter of type long nCols [in]   nCols is a parameter of type long nRows [in]   nRows is a parameter of type long points [in]

  points is a parameter of type _WKSPoint

ulx [in]   ulx is a parameter of type double uly [in]   uly is a parameter of type double dx [in]   dx is a parameter of type double dy [in]   dy is a parameter of type double pSrcPixelBlock [in]

  pSrcPixelBlock is a parameter of type IPixelBlock

pDstPixelBlock [in]

  pDstPixelBlock is a parameter of type IPixelBlock

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IPixelResampler Interface