LBitmapBase::IsSuperCompressed

Summary

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

Syntax

#include "ltwrappr.h"

L_BOOL LBitmapBase::IsSuperCompressed()

Returns

Value Meaning
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

Platforms

Win32, x64.

See Also

Functions

Topics

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; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.