virtual L_INT LMemoryFile::SaveBitmapBufferCallBack(pLBuffer, uRequiredSize)
This function is called if the buffer of the LBuffer object used by the LMemoryFile::SaveBitmapBuffer function is not large enough to accommodate the file in memory. This function gives the user the opportunity to reallocate the buffer to an adequate size.
Pointer to an LBuffer object into which the bitmap will be saved. This pointer can be used to increase the size of the buffer of the LBuffer object.
Minimum buffer size required to save the bitmap or file.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
FAILURE | An error occurred. |
This callback function is optional, but recommended. If the callback is not used, then the user must provide the LMemoryFile::SaveBitmapBuffer function with a buffer that is large enough to hold the memory file. If the buffer is not large enough and the callback is not used, LMemoryFile::SaveBitmapBuffer will fail.
To use this function, the user must derive a new class from the LMemoryFile class and override this function. The use of this callback function must also be enabled by calling LBase::EnableCallBack.
If the callback successfully reallocates the buffer, it should return SUCCESS.
If the callback fails to successfully reallocate the buffer, it should return FAILURE.
This function does not support signed data images, unless they are DICOM images. It returns the error code ERROR_SIGNED_DATA_NOT_SUPPORTED if a signed data image that is not a DICOM image is passed to this function.
Win32, x64.
// Derive a new class from LMemoryFile and
// override LMemoryFile::SaveBitmapBufferCallBack
class LUserMemoryFileSBBC : public LMemoryFile
{
virtual L_INT SaveBitmapBufferCallBack(LBuffer * pLBuffer,
L_SIZE_T uRequiredSize)
{
L_TCHAR szMessage[128];
wsprintf(szMessage, TEXT("Initial LEAD buffer size: %d\n"), pLBuffer->GetSize());
wsprintf(szMessage, TEXT("%sThe required size: %d"), szMessage, uRequiredSize);
MessageBox(NULL, szMessage, TEXT("Buffer Info"), MB_OK);
// Try to reallocate the LEAD buffer
pLBuffer->Unlock();
L_INT nRet = pLBuffer->Reallocate(uRequiredSize);
if (nRet == SUCCESS)
return SUCCESS;
else
return FAILURE;
}
};
L_INT LMemoryFile__SaveBitmapBufferCallBackExample(LBitmapBase & Bitmap)
{
LUserMemoryFileSBBC MemoryFile;
LBuffer Buffer(1000); // 1000 bytes initially
L_SIZE_T dwFileSize;
MemoryFile.SetBitmap(&Bitmap);
if (!MemoryFile.IsCallBackEnabled())
MemoryFile.EnableCallBack(TRUE);
return MemoryFile.SaveBitmapBuffer(&Buffer,
&dwFileSize,
FILE_TIF,
0,
QS,
NULL);
}
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