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 As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As Integer
public int PixelGetColorI(
int ,
int ,
int
)
public function PixelGetColorI(
: Integer;
: Integer;
: Integer
): Integer;
public function PixelGetColorI(
: int,
: int,
: int
) : int;
public: int PixelGetColorI(
int ,
int ,
int
)
public:
int PixelGetColorI(
int ,
int ,
int
)
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