ImageGear .NET v25.1 - Updated
GetColumnCopy Method




ImageGear.Core Assembly > ImageGear.Core Namespace > ImGearDIB Class : GetColumnCopy Method
Number of column in image.
Y offset in requested column.
Quantity of pixels to be retrieved.
Returns an array of pixels that are exact copies of pixels located in requested column part.
Syntax
'Declaration
 
Public MustOverride Function GetColumnCopy( _
   ByVal column As Integer, _
   ByVal row As Integer, _
   ByVal pixelsQty As Integer _
) As ImGearPixelArray
'Usage
 
Dim instance As ImGearDIB
Dim column As Integer
Dim row As Integer
Dim pixelsQty As Integer
Dim value As ImGearPixelArray
 
value = instance.GetColumnCopy(column, row, pixelsQty)
public abstract ImGearPixelArray GetColumnCopy( 
   int column,
   int row,
   int pixelsQty
)
public: abstract ImGearPixelArray* GetColumnCopy( 
   int column,
   int row,
   int pixelsQty
) 
public:
abstract ImGearPixelArray^ GetColumnCopy( 
   int column,
   int row,
   int pixelsQty
) 

Parameters

column
Number of column in image.
row
Y offset in requested column.
pixelsQty
Quantity of pixels to be retrieved.

Return Value

ImGearPixelArray class instance.
Remarks
Throws exception if specified points are outside image bounds.
See Also

Reference

ImGearDIB Class
ImGearDIB Members
ImGearPixelArray Class