virtual L_INT LAnimationWindow::Save()
Saves an animation to a file on disk.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Call this function to save all the images in the animation object's bitmap list to file. This function saves as GIF files only.
Win32, x64.
The following example will load a bitmap list and save it to a new file using LAnimationWindow.
L_INT LAnimationWindow_SaveExample(HWND hWnd)
{
L_INT nRet;
LBase::LoadLibraries(LT_ALL_LEADLIB); //make sure all libraries are loaded
LBitmapList MyBitmapList; //Create a bitmaplist
nRet = MyBitmapList.Load (MAKE_IMAGE_PATH(TEXT("eye.gif")));
if (nRet==SUCCESS)
{
LAnimationWindow MyAnimation;
MyAnimation.SetBitmapList(&MyBitmapList);
MyAnimation.SetFileName(MAKE_IMAGE_PATH(TEXT("eye2.gif")));
nRet = MyAnimation.Save();
if(nRet != SUCCESS)
return nRet;
}
else
{
MessageBox(hWnd, TEXT("Failed to load file"),TEXT("Error!"),MB_OK | MB_ICONSTOP);
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