LBitmapBase::GetYResolution

#include "ltwrappr.h"

L_INT LBitmapBase::GetYResolution(void)

Retrieves the Y resolution of the class object’s bitmap.

Returns

The Y resolution of the bitmap.

Comments

Use this function to retrieve the Y resolution of the bitmap.

Required DLLs and Libraries

LTDIS
LTFIL

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Elements:

LBitmapBase::GetXResolution, Class Members

Example

LBitmapBase MyBitmap;
L_INT nYRes;

MyBitmap.Load(TEXT("image1.cmp"));
nYRes=MyBitmap.GetYResolution();