GdPicture image identifier.
Value that specifies the x-coordinate (column) of the pixel.
Value that specifies the y-coordinate (row) of the pixel.
The color to apply, as 32-bit integer value. A suitable color value can be obtained by using the ARGBI() method.





In This Topic

PixelSetColorI Method (GdPictureImaging)

In This Topic
Sets the color of a specified pixel in a GdPicture image.
Syntax
'Declaration
 
Public Function PixelSetColorI( _
   ByVal ImageID As Integer, _
   ByVal DstLeft As Integer, _
   ByVal DstTop As Integer, _
   ByVal PixelColor As Integer _
) As GdPictureStatus
public GdPictureStatus PixelSetColorI( 
   int ImageID,
   int DstLeft,
   int DstTop,
   int PixelColor
)
public function PixelSetColorI( 
    ImageID: Integer;
    DstLeft: Integer;
    DstTop: Integer;
    PixelColor: Integer
): GdPictureStatus; 
public function PixelSetColorI( 
   ImageID : int,
   DstLeft : int,
   DstTop : int,
   PixelColor : int
) : GdPictureStatus;
public: GdPictureStatus PixelSetColorI( 
   int ImageID,
   int DstLeft,
   int DstTop,
   int PixelColor
) 
public:
GdPictureStatus PixelSetColorI( 
   int ImageID,
   int DstLeft,
   int DstTop,
   int PixelColor
) 

Parameters

ImageID
GdPicture image identifier.
DstLeft
Value that specifies the x-coordinate (column) of the pixel.
DstTop
Value that specifies the y-coordinate (row) of the pixel.
PixelColor
The color to apply, as 32-bit integer value. A suitable color value can be obtained by using the ARGBI() method.

Return Value

A member of the GdPictureStatus enumeration.
See Also