virtual L_INT LFile::LoadExtensionStamp(pExtensionList)
Loads a stamp from the specified extension list into the class objects associated bitmap.
Pointer to the EXTENSIONLIST structure that contains the stamp to load.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The extensions referenced by the pExtensionList parameter must be loaded by calling the LFile::ReadFileExtensions function.
Win32, x64.
L_INT LFile__LoadExtensionStampExample(LBitmapBase & Bitmap, L_TCHAR * pszFile)
{
L_INT nRet;
LFile File;
pEXTENSIONLIST pExtensionList;
File.SetFileName(pszFile);
nRet = File.ReadFileExtensions(&pExtensionList);
if(nRet != SUCCESS)
{
MessageBox(NULL, TEXT("Error getting extensions!"),
TEXT("Loading Extension Stamp"), MB_OK);
return nRet;
}
if (pExtensionList->uFlags & EXTENSION_STAMP)
{
File.SetBitmap(&Bitmap);
nRet = File.LoadExtensionStamp(pExtensionList);
if(nRet != SUCCESS)
{
MessageBox(NULL, TEXT("Error loading the stamp!"),
TEXT("Loading Extension Stamp"), MB_OK);
return nRet;
}
}
else
MessageBox(NULL, TEXT("The extensions do not contain a stamp!"),
TEXT("Loading Extension Stamp"), MB_OK);
nRet = File.FreeExtensions(pExtensionList);
if(nRet != SUCCESS)
return nRet;
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