ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearDIB Class / GetPixelCopy Method
X coordinate of requested pixel.
Y coordinate of requested pixel.




In This Topic
    GetPixelCopy Method
    In This Topic
    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