LBitmapBase::GetBytesPerLine

#include "ltwrappr.h"

L_INT LBitmapBase::GetBytesPerLine(void)

Retrieves the number of bytes per line of bitmap data.

Returns

The number of bytes per line of bitmap data.

Comments

Use this function to retrieve number of bytes per line of bitmap data.

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:

Class Members

Example

LBitmapBase MyBitmap;
L_INT  nBPL;

MyBitmap.Load(TEXT("image1.cmp"));
nBPL=MyBitmap.GetBytesPerLine();