LBitmap::operator=

Summary

Copies of a bitmap from another LBitmap object.

Syntax

#include "ltwrappr.h"

LBitmap& LBitmap::operator=(LBitmapSrc)

Parameters

LBitmap& LBitmapSrc

The source LEAD bitmap.

Returns

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

Platforms

Win32, x64.

See Also

Example

L_INT LBitmap__operatorExample() 
{ 
   L_INT nRet; 
   LBitmap 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 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.