Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Raster imaging C++ Class library help

LBitmapBase::IsSuperCompressed

Show in webframe

#include "ltwrappr.h"

L_BOOL LBitmapBase::IsSuperCompressed()

Determines whether the class objects bitmap is a super compressed bitmap or not.

Returns

TRUE

The bitmap is a super compressed one.

FALSE

The bitmap is not a super compressed one.

Comments

A super compressed bitmap is one that is kept compressed in memory. For more information, refer to Super Compressed Bitmaps.

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.

Platforms

Win32, x64.

See Also

Functions:

Class Members

Topics:

Super Compressed Bitmaps

Example

L_INT LBitmapBase__IsSuperCompressedExample(LBitmapBase & Bitmap)
{
   if (Bitmap.IsSuperCompressed())
      MessageBox(NULL, TEXT("It's a super compressed bitmap!"),
                  TEXT("Testing"), MB_OK);
   else
      MessageBox(NULL, TEXT("It's not a super compressed bitmap!"),
                  TEXT("Testing"), MB_OK);
   return SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.