L_ReadFileStamp

#include "l_bitmap.h"

L_LTFIL_API L_INT L_ReadFileStamp(pszFile, pBitmap, uStructSize, pLoadOptions)

Reads a thumbnail image stored in a file and loads it into a specified bitmap.

Parameters

L_TCHAR* pszFile

Character string containing the file name.

pBITMAPHANDLE pBitmap

Pointer to the bitmap handle referencing the bitmap that will contain the thumbnail image.

L_UINT uStructSize

Size in bytes, of the structure pointed to by pBitmap, for versioning. Use sizeof(BITMAPHANDLE).

pLOADFILEOPTION pLoadOptions

Pointer to optional extended load options. Pass NULL to use the default load options.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Only EXIF, CMP, JFIF and FlashPix formats support stamps. However, not all file of these formats contain stamps.

NOTE: At this time, there are no multipage formats that support stamps.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

Reads a thumbnail image stored in a FlashPix file and loads it into a specified bitmap. Then saves the thumbnail image into bmp image.

L_INT ReadFileStampExample(L_VOID) 
{ 
   L_INT nRet; 
   BITMAPHANDLE StampBitmap; 
   nRet = L_ReadFileStamp(MAKE_IMAGE_PATH(TEXT("STAMP.CMP")), 
                   &StampBitmap, sizeof(BITMAPHANDLE), NULL); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   nRet = L_SaveBitmap(MAKE_IMAGE_PATH(TEXT("Thumbnail.BMP")), 
                &StampBitmap, FILE_BMP, 24, 0, NULL); 
    
   if(StampBitmap.Flags.Allocated) 
      L_FreeBitmap(&StampBitmap); 
 
   return nRet; 
} 

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help