L_VOID LBitmapBase::SetLocalSettings()
Sets the local settings for the bitmap object.
None.
Call this function to set the local settings for the bitmap object. This is a protected function, that you can call internally in your code. This will set the local settings for the class object's bitmap which include the paint intensity, paint contrast, paint gamma, and display flags. This is only used if the local settings for the bitmap object are enabled. This function is called internally when painting the class object's bitmap.
Win32, x64.
class MyBitmap: public LBitmapBase
{
public:
~MyBitmap();
MyBitmap();
} ;
MyBitmap::MyBitmap()
{
if(IsLocalSettingsEnabled())
SetLocalSettings();
}
MyBitmap::~MyBitmap()
{
if(IsLocalSettingsEnabled())
RestoreGlobalSettings();
}
L_INT LBitmapBase__SetLocalSettingsExample()
{
L_INT nRet;
MyBitmap *myBitmap = new MyBitmap();
nRet =myBitmap->Free();
if(nRet !=SUCCESS)
return nRet;
delete myBitmap;
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