L_StartFeedLoad

#include "l_bitmap.h"

L_LTFIL_API L_INT L_StartFeedLoad(pBitmap, uStructSize, nBitsPerPixel, nOrder, uFlags, pfnCallback, pUserData, phLoad, pLoadOptions, pFileInfo)

pBITMAPHANDLE pBitmap;

pointer to the bitmap handle

L_UINT uStructSize;

size in bytes, of the structure pointed to by pBitmap

L_INT nBitsPerPixel;

resulting bitmap pixel depth

L_INT nOrder;

desired color order

L_UINT uFlags;

flags that determine the behavior of L_FeedLoad

FILEREADCALLBACK pfnCallback;

optional callback function

L_VOID* pUserData;

pointer to more parameters for the callback

L_HGLOBAL *phLoad;

handle that identifies the loading process

pLOADFILEOPTION pLoadOptions;

pointer to optional extended load options

pFILEINFO pFileInfo;

pointer to a structure

Initializes a file-load process in which you control the input stream. You must call the L_FeedLoad function to supply buffered data, and you must call L_StopFeedLoad when the loading is complete.

Parameter Description
pBitmap Pointer to the bitmap handle to load the image to.
uStructSize Size in bytes, of the structure pointed to by pBitmap, for versioning. Use sizeof(BITMAPHANDLE).
nBitsPerPixel Resulting bitmap pixel depth. The following are valid values:
  Value Meaning
  0 Keep the original file's pixel depth (Do not convert). A special note about loading 12 and 16-bit grayscale images.
  1 to 8 The specified bits per pixel in the resultant bitmap
  12 12 bits per pixel in the resultant bitmap.
  16 16 bits per pixel in the resultant bitmap
  24 24 bits per pixel in the resultant bitmap
  32 32 bits per pixel in the resultant bitmap

 

nOrder The desired color order. Possible values are:
  Value Meaning
  ORDER_RGB [0] Red-green-blue order.
  ORDER_BGR [1] Blue-green-red order.
  ORDER_GRAY [2] 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are only supported in  Document and Medical Imaging toolkits.
  0 The data is 8 bits per pixel or less.
  ORDER_RGBORGRAY [3] Load the image as red, green, blue OR as a 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are supported in  Document and Medical Imaging toolkits.
  ORDER_BGRORGRAY [4] Load the image as blue, green, red OR as a 12 or 16-bit grayscale image. 12 and 16-bit grayscale images are supported in Document and Medical Imaging toolkits.
uFlags Binary flags that determine the behavior of L_FeedLoad. You can specify one or more of the following values:
  Value Meaning
  LOADFILE_ALLOCATE [0x0001] The function allocates memory for the specified bitmap.
  LOADFILE_STORE [0x0002] The function loads data into the specified bitmap. (This takes place in addition to the actions of your callback function.)
  LOADFILE_FIXEDPALETTE [0x0004] This flag will force a palletized image to be dithered to a fixed palette.
  LOADFILE_NOINTERLACE [0x0008] The function passes image data in the order that is displayed, regardless of how it is stored in the file. (Set this flag if your program does not handle interlaced file formats.)
  LOADFILE_ALLPAGES [0x0010] The function loads all pages of a multi-page file. Use this flag only if you are creating a bitmap list using the L_AppendPlayback function.
  LOADFILE_COMPRESSED [0x0040] (Document and Medical Imaging toolkits) If possible, load the file as a 1-bit RLE-compressed image. For more information, refer to Speeding Up 1-Bit Documents.
pfnCallback Optional callback function for additional processing.
  If you do not provide a callback function, use NULL as the value of this parameter.
  If you do provide a callback function, use the function pointer as the value of this parameter.
  The callback function must adhere to the function prototype described in FILEREADCALLBACK Function.
pUserData Void pointer that you can use to pass one or more additional parameters that the callback function needs.
  To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID*. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure.
  If the additional parameters are not needed, you can pass NULL in this parameter.
phLoad Handle that identifies the loading process. Use this handle with the L_FeedLoad and L_StopFeedLoad functions.
pLoadOptions Pointer to optional extended load options. Pass NULL to use the default load options.
pFileInfo Pointer to a FILEINFO structure. This structure may contain file information used in loading an image, or it may be updated with information about the file being loaded.
  If nothing is known about the file, pass NULL for this parameter, or declare a variable of type FILEINFO and set the FILEINFO.Flags to 0, then pass the address of the FILEINFO structure in this parameter. In this case, if the address of a FILEINFO structure is passed, the FILEINFO structure will be updated with the results of L_FileInfo.
  If only the file type is known, set pFileInfo.Format to the file type and set pFileInfo.Flags to FILEINFO_FORMATVALID. This can also be done if L_FileInfo has been called previously, but values that affect the size of the image loaded have been changed (for example, by calling L_SetPCDResolution or L_SetWMFResolution). In this case the FILEINFO structure pointed to by pFileInfo will be updated with the results of L_FileInfo.
  If L_FileInfo has been called prior to calling this function, and no changes have been made to the contents of the structure filled by L_FileInfo, then the address of the filled FILEINFO structure can be passed for this parameter. In this case, the FILEINFO.Flags member should be set to FILEINFO_INFOVALID. The L_FileInfo function will set the FILEINFO.Flags to FILEINFO_INFOVALID. In this case the load will be faster since this function does not have to query the file filters for the file type.
  Note: Local variables are not initialized (since they are placed on the stack). So if you have a FILEINFO structure as a local variable, the value of its Flags parameter is undefined, possibly having FILEINFO_INFOVALID or FILEINFO_FORMATVALID set. That is why it is important to initialize FILEINFO.Flags before passing the address of the FILEINFO structure to the function.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This file-load process is useful when receiving transmitted images, such as those on the Internet. It works the same way as the L_LoadFile function, except that your code supplies the image data. The file-load process works as follows:

1.

You call the L_StartFeedLoad function to initialize the file-load process and identify the process with a handle (phLoad).

2.

You create a buffer, and each time you fill it with information, you call the L_FeedLoad function, which sends the data to the file-load process just as if the data were being read from a file on disk.

3.

Whenever it has enough data to do so, the file-load process behaves the same as in the L_LoadFile function. It allocates and begins loading the bitmap, according to the flags that you specify in the L_StartFeedLoad function. It calls your callback function, if one is specified, whenever it has enough data in its input buffer.

 

The file-load process does not update information in the bitmap handle until it has received enough information to do so. (Usually, the information, such as the bitmap height and width, is in the file header.) The file-load process will make the first call to your callback function whenever this information is available.

4.

To end the file-load process, you call the L_StopFeedLoad function, which cleans up the process. If you call this function before supplying the complete file, it will successfully clean up the process, but will return a file-read error. You should trap the error if the load is canceled purposely.

ORDER_GRAY is only valid for 12 and 16-bit grayscale images. Support for 12 and 16-bit grayscale images is only available in the Document and Medical Imaging toolkits.

This function cannot be used in combination with L_RedirectIO.

Note: You should never pass an uninitialized FILEINFO structure to this function.

Required DLLs and Libraries

LTFIL
File format DLLs

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64, Linux.

See Also

Functions:

L_FeedLoad, L_StopFeedLoad, L_ChangeBitmapHeight

Topics:

Raster Image Functions: Loading Files

 

Raster Image Functions: Redirecting Input and Output

 

Raster Image Functions: Input and Output

 

Loading and Saving Images

Example

For complete sample code, refer to the FEEDLOAD example. This example demonstrates the feed-load feature by using the Windows GetTickCount function to simulate receiving a transmitted image. This example also uses a callback function to implement a paint-while-load feature. Refer to the FILEREADCALLBACK function to see how the callback function paints the image data.

#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName 
/* Structure used for the callback function's user data */ 
typedef struct tagIMAGECBPARM 
{ 
   HWND hwnd;     /* Current window */ 
   HDC hdc;       /* Device context for the current window */ 
} IMAGECBPARM; 
static L_INT EXT_CALLBACK LoadImageCB(pFILEINFO     pFileInfo, 
pBITMAPHANDLE pBitmap, 
L_UCHAR     * pBuffer, 
L_UINT        uFlags, 
L_INT         nRow, 
L_INT         nLines, 
L_VOID      * pUserData) 
{ 
   static RECT rLeadSource; 
   static RECT rLeadDest; 
   IMAGECBPARM *pData = (IMAGECBPARM*)pUserData; 
   /* If this is the first call (row 0), select and realize the palette */ 
   if((uFlags & FILEREAD_FIRSTPASS) && (uFlags & FILEREAD_FIRSTROW) ) 
   { 
      /* Set the source rectangle to use the whole bitmap */ 
      SetRect(&rLeadSource, 0, 0, pFileInfo->Width, pFileInfo->Height); 
      /* Set the dest rectangle to use the whole client area */ 
      GetClientRect(pData->hwnd, &rLeadDest); 
   } 
   /* Paint the buffer to the specified device context */ 
   L_PaintDCBuffer( pData->hdc, /* Device context - from function parameter */ 
   pBitmap, /* Bitmap handle - from function parameter */ 
   &rLeadSource, /* Source rect - set globally in WM_CREATE */ 
   &rLeadSource, /* Source clip rect - same as source rect */ 
   &rLeadDest, /* Destination rect - set globally in WM_CREATE */ 
   &rLeadDest, /* Destination clip rect - same as destination rect */ 
   SRCCOPY, /* ROP code for normal painting */ 
   pBuffer, /* Input buffer - from function parameter */ 
   nRow, /* First row in the buffer - from function parameter */ 
   (uFlags & FILEREAD_COMPRESSED) ? -nLines : nLines ); 
   return( SUCCESS ); 
} 
L_INT StartFeedLoadExample(HWND hWnd, pBITMAPHANDLE pBitmap) 
{ 
   L_INT nRet; 
   HANDLE hf;                    /* File handle */ 
   HGLOBAL hLoad;                /* Handle that identifies the loading process */ 
   L_UCHAR cBuf[1024];           /* Buffer for receiving data */ 
   L_INT nRead;                  /* Amount of data read in one pass of the reading loop */ 
   L_UINT32 dwBaseTime;          /* Value of the first call to GetTickCount */ 
   L_UINT32 dwReceiveTotal;      /* Data received so far from the simulated transmission */ 
   L_UINT32 dwReceiveRead;       /* Data actually processed so far */ 
   static IMAGECBPARM UserData;  /* Structure used for the callback function's user data */ 
   /* Initialize variables used for simulating an incoming transmission */ 
   dwBaseTime = GetTickCount(); 
   dwReceiveTotal = 0; 
   dwReceiveRead = 0; 
   /* Open the file to be read */ 
   hf = CreateFile(MAKE_IMAGE_PATH(TEXT("ImageProcessingDemo\\Image3.cmp")), 
   GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL); 
   /* Set the user data used for the callback in the L_StartFeedLoad function */ 
   UserData.hwnd = hWnd;         /* Current window */ 
   UserData.hdc = GetDC( hWnd ); /* Device context for the current window */ 
   /* Initialize the file-load process */ 
   if(pBitmap->Flags.Allocated) 
      L_FreeBitmap(pBitmap); 
   nRet = L_StartFeedLoad (pBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, 
   LOADFILE_ALLOCATE |  LOADFILE_STORE, 
   LoadImageCB, &UserData, &hLoad, NULL, NULL); 
   if(nRet != SUCCESS) 
      return nRet; 
   /* Use the Windows GetTickCount function to simulate receiving a transmitted image */ 
   for( ; ; ) 
   { 
      /* Calculate the data received so far, using a simulated baud rate of 28800 */ 
      dwReceiveTotal = ((GetTickCount() - dwBaseTime) * (28800 / 100) / 100); 
      /* Initialize the amount of data to read in this pass */ 
      nRead = (L_INT) min(dwReceiveTotal - dwReceiveRead, (L_UINT32) sizeof(cBuf)); 
      /* Do nothing if no data was received in this pass */ 
      if(nRead == 0) 
         continue; 
      /* Try to read the expected amount of data from the file into cBuf */ 
      DWORD BytesRead; 
      ReadFile (hf, cBuf, nRead, &BytesRead, NULL); 
      /* We are finished if nothing was read */ 
      if(!BytesRead) 
         break; 
      /* Supply image data from cBuf to the file-load process */ 
      L_FeedLoad (hLoad, cBuf, BytesRead); 
      /* Update the amount of data actually processed so far */ 
      dwReceiveRead += (L_UINT32) BytesRead; 
   } 
   /* Close the file and clean up the file-load process */ 
   CloseHandle (hf); 
   L_StopFeedLoad (hLoad); 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C API Help