LBitmap& LBitmap::operator=(LBitmapSrc)
Copies of a bitmap from another LBitmap object.
The source LEAD bitmap.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
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.
Win32, x64.
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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document