Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 784 Bytes

File metadata and controls

47 lines (32 loc) · 784 Bytes

Home

Function name : GdipGetImageWidth

Group: GDI+ Image - Library: gdiplus


Gets the width, in pixels, of this image.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipGetImageWidth(
	GpImage *image,
	UINT *width
)
  

FoxPro declaration:

DECLARE INTEGER GdipGetImageWidth IN gdiplus;
	INTEGER   img,;
	INTEGER @ imgwidth  

Parameters:

img [in] Handle to Image Object

imgwidth [out] Width of this image in pixels.


Return value:

Returns GpStatus value, 0 means success.