LBitmapBase::Copy

Summary

Copies a bitmap object.

Syntax

#include "ltwrappr.h"

virtual L_INT LBitmapBase::Copy(LBitmapSrc)

Parameters

LBitmapBase& LBitmapSrc

The source bitmap object to be copied.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Call this function to copy a bitmap object. This will copy the bitmap handle and data, all the other settings will not be changed.

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

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LBitmapBase__CopyExample() 
{ 
   L_INT nRet; 
   LBitmapBase MyBitmap, CopyBitmap; 
   MyBitmap.SetFileName(MAKE_IMAGE_PATH(TEXT("image1.cmp"))); 
   nRet =MyBitmap.Load(); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   nRet = CopyBitmap.Copy(MyBitmap);  //make a copy of the bitmap 
 
   return nRet; 
} 
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.