Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 790 Bytes

GdipGetImageHeight.md

File metadata and controls

47 lines (32 loc) · 790 Bytes

Home

Function name : GdipGetImageHeight

Group: GDI+ Image - Library: gdiplus


Gets the height, in pixels, of this image.


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipGetImageHeight(
	GpImage *image,
	UINT *height
)
  

FoxPro declaration:

DECLARE INTEGER GdipGetImageHeight IN gdiplus;
	INTEGER   img,;
	INTEGER @ imgheight  

Parameters:

img [in] Handle to Image Object

imgwidth [out] Height of this image in pixels.


Return value:

Returns GpStatus value, 0 means success.