GdPicture.NET.14.API
GdPicture14 Namespace / GdPictureImaging Class / GetScanLines Method
GdPicture image identifier.





In This Topic
GetScanLines Method (GdPictureImaging)
In This Topic
Returns an array of pointers of all GdPicture image scanlines.
Syntax
'Declaration
 
Public Function GetScanLines( _
   ByVal ImageID As Integer _
) As IntPtr()
public IntPtr[] GetScanLines( 
   int ImageID
)
public function GetScanLines( 
    ImageID: Integer
): array of IntPtr; 
public function GetScanLines( 
   ImageID : int
) : IntPtr[];
public: IntPtr[]* GetScanLines( 
   int ImageID
) 
public:
array<IntPtr>^ GetScanLines( 
   int ImageID
) 

Parameters

ImageID
GdPicture image identifier.

Return Value

An array of bitmap scanlines pointer; First entry is the top scanline and latest is the bottom.
See Also