LBitmapBase::operator=

#include "ltwrappr.h"

LBitmapBase& LBitmapBase::operator=(LBitmapSrc)

LBitmapBase& LBitmapSrc;

the source bitmap

Makes a copy of a bitmap from another LBitmapBase object.

Parameter

Description

LBitmapSrc

The source LEAD bitmap.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Use this operator to make a copy of a bitmap from another LBitmapBase object. Only the bitmap data and handle will be copied, all other data members of the destination bitmap will not be changed.

The LBitmapSrc parameter is passed by reference, and is a required parameter.

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:

LBitmapBase::Copy, Class Members

Example

L_INT LBitmapBase__operatorExample() 
{ 
   L_INT nRet; 
   LBitmapBase MyBitmap1, MyBitmap2; 
 
   nRet =MyBitmap1.Load(MAKE_IMAGE_PATH(TEXT("image1.cmp"))); 
   if(nRet !=SUCCESS) 
      return nRet; 
   //now copy the bitmap 
   MyBitmap2 = MyBitmap1; 
 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help