virtual L_INT LFile::ReadStamp(pLoadFileOption=NULL)
Reads a thumbnail image stored in a file and loads it into a specified bitmap.
Pointer to optional extended load options. Pass NULL to use the default load options.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Only EXIF, CMP, JFIF and FlashPix formats support stamps. However, not all files of these formats contain stamps.
NOTE: At this time, there are no multipage formats that support stamps.
Win32, x64.
L_INT LFile__ReadStampExample()
{
LFile LeadFile ;
LBitmapBase LeadBitmap ;
L_INT nRet = 0 ;
LeadFile.SetBitmap(&LeadBitmap);
LeadFile.SetFileName(MAKE_IMAGE_PATH(TEXT("Image1.fpx")));
//Reads a thumbnail image stored in a FlashPix file and loads it into a specified bitmap.
nRet = LeadFile.ReadStamp();
if (nRet == SUCCESS)
{
//Puts a stamp, in an existing FlashPix file "IMAGE1.FPX"
LeadFile.SetFileName(MAKE_IMAGE_PATH(TEXT("IMAGE1.FPX")));
nRet = LeadFile.WriteStamp(NULL);
}
else
{
MessageBox(NULL,TEXT("File has no thumbnail image"),TEXT("Stamp"),MB_OK);
}
return nRet;
}
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