LBitmapBase::GetXResolution

#include "ltwrappr.h"

L_INT LBitmapBase::GetXResolution(void)

Retrieves the X resolution of the bitmap.

Returns

The X resolution of the bitmap.

Comments

Use this function to retrieve the X 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::GetYResolution, Class Members

Example

LBitmapBase MyBitmap;
L_INT nXRes;

MyBitmap.Load(TEXT("image1.cmp"));
nXRes=MyBitmap.GetXResolution();