GdPicture image identifier.
Output parameter. Array of pixel data.
The left source pixel of the area.
The top source pixel of the area.
The width of the area in pixel.
The height of the area in pixel.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / GetPixelArrayInteger Method

GetPixelArrayInteger Method (GdPictureImaging)

In This Topic
Stores into an array of Integer the ARGB pixel values of an area of a GdPicture image.
Syntax
'Declaration
 
Public Function GetPixelArrayInteger( _
   ByVal ImageID As Integer, _
   ByRef Data() As Integer, _
   ByVal SrcLeft As Integer, _
   ByVal SrcTop As Integer, _
   ByVal Width As Integer, _
   ByVal Height As Integer _
) As GdPictureStatus
public GdPictureStatus GetPixelArrayInteger( 
   int ImageID,
   ref int[] Data,
   int SrcLeft,
   int SrcTop,
   int Width,
   int Height
)
public function GetPixelArrayInteger( 
    ImageID: Integer;
   var  Data: Integerarray of;
    SrcLeft: Integer;
    SrcTop: Integer;
    Width: Integer;
    Height: Integer
): GdPictureStatus; 
public function GetPixelArrayInteger( 
   ImageID : int,
   Data : int[],
   SrcLeft : int,
   SrcTop : int,
   Width : int,
   Height : int
) : GdPictureStatus;
public: GdPictureStatus GetPixelArrayInteger( 
   int ImageID,
   ref int[]* Data,
   int SrcLeft,
   int SrcTop,
   int Width,
   int Height
) 
public:
GdPictureStatus GetPixelArrayInteger( 
   int ImageID,
   array<int>^% Data,
   int SrcLeft,
   int SrcTop,
   int Width,
   int Height
) 

Parameters

ImageID
GdPicture image identifier.
Data
Output parameter. Array of pixel data.
SrcLeft
The left source pixel of the area.
SrcTop
The top source pixel of the area.
Width
The width of the area in pixel.
Height
The height of the area in pixel.

Return Value

A member of the GdPictureStatus enumeration.
See Also