GdPicture image identifier.
Value that specifies the x-coordinate (column) of the pixel.
Value that specifies the y-coordinate (row) of the pixel.





In This Topic

PixelGetColorI Method (GdPictureImaging)

In This Topic
Gets the color of a specified pixel in a GdPicture image, as 32-bit integer value.
Syntax
'Declaration
 
Public Function PixelGetColorI( _
   ByVal ImageID As Integer, _
   ByVal SrcLeft As Integer, _
   ByVal SrcTop As Integer _
) As Integer
public int PixelGetColorI( 
   int ImageID,
   int SrcLeft,
   int SrcTop
)
public function PixelGetColorI( 
    ImageID: Integer;
    SrcLeft: Integer;
    SrcTop: Integer
): Integer; 
public function PixelGetColorI( 
   ImageID : int,
   SrcLeft : int,
   SrcTop : int
) : int;
public: int PixelGetColorI( 
   int ImageID,
   int SrcLeft,
   int SrcTop
) 
public:
int PixelGetColorI( 
   int ImageID,
   int SrcLeft,
   int SrcTop
) 

Parameters

ImageID
GdPicture image identifier.
SrcLeft
Value that specifies the x-coordinate (column) of the pixel.
SrcTop
Value that specifies the y-coordinate (row) of the pixel.

Return Value

The pixel color as 32-bit integer value.
See Also