LPaint::LPaint()
LPaint::LPaint(pBitmap, hDC)
Constructs and initializes the different member variables of the LPaint object.
Pointer to an allocated bitmap object to be painted.
Handle of a windows device context to be used for the painting. The mapping mode of the device context must be MM_TEXT.
None.
LPaint::LPaint() is a constructor for the LPaint class.
LPaint::LPaint(pBitmap, hDC) constructs and initializes an LPaint object with the passed bitmap object pointer and the Windows device context handle.
Win32, x64.
// This is an example for LPaint::LPaint():
L_INT LPaint__LPaintExample_1()
{
// this will call the default constructor and destructor when it is out of scope
LPaint LeadPaint;
//...
return SUCCESS;
}
// This is an example for LPaint::LPaint(pBitmap, hDC):
L_INT LPaint__LPaintExample_2(HDC hDC)
{
L_INT nRet;
LBitmapBase LeadBitmap;
nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("image1.cmp"))) ;
if(nRet != SUCCESS)
return nRet;
// this will call the default constructor and destructor when it is out of scope
LPaint LeadPaint(&LeadBitmap, hDC) ;
//...
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