ImageGear .NET v25.1 - Updated
GetPixelCopy Method




ImageGear.Core Assembly > ImageGear.Core Namespace > ImGearDIB Class : GetPixelCopy Method
X coordinate of requested pixel.
Y coordinate of requested pixel.
Returns exact copy of requested pixel.
Syntax
'Declaration
 
Public MustOverride Function GetPixelCopy( _
   ByVal column As Integer, _
   ByVal row As Integer _
) As ImGearPixel
'Usage
 
Dim instance As ImGearDIB
Dim column As Integer
Dim row As Integer
Dim value As ImGearPixel
 
value = instance.GetPixelCopy(column, row)
public abstract ImGearPixel GetPixelCopy( 
   int column,
   int row
)
public: abstract ImGearPixel* GetPixelCopy( 
   int column,
   int row
) 
public:
abstract ImGearPixel^ GetPixelCopy( 
   int column,
   int row
) 

Parameters

column
X coordinate of requested pixel.
row
Y coordinate of requested pixel.

Return Value

ImGearPixel class instance.
Remarks
Throws an exception if the coordinates of the requested pixel are outside of the image bounds.
See Also

Reference

ImGearDIB Class
ImGearDIB Members
ImGearPixel Class