L_LoadFile

#include "l_bitmap.h"

L_INT EXT_FUNCTION L_LoadFile(pszFile, pBitmap, uStructSize, nBitsPerPixel, nOrder, uFlags, pfnCallback, pUserData, pLoadOptions, pFileInfo)

L_TCHAR L_FAR * pszFile;

/* name of the image file to load */

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 function behavior */

FILEREADCALLBACK pfnCallback;

/* optional callback function */

L_VOID L_FAR * pUserData;

/* pointer to more parameters for the callback */

pLOADFILEOPTION pLoadOptions;

/* pointer to optional extended load options */

pFILEINFO pFileInfo;

/* pointer to a structure */

Loads any supported file, using a callback function.

Parameter

Description

pszFile

Character string containing the name of the image file to load.

pBitmap

Pointer to the bitmap handle for the loaded data.

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

 

48

48 bits per pixel in the resultant bitmap

 

64

64 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 the Document/Medical Imaging editions .

 

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 the Document/Medical Imaging editions only.

 

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 the Document/Medical Imaging editions only.

 

0

The data is 8 bits per pixel or less.

 

ORDER_ROMM

[5] ROMM order. ROMM only supports 24 and 48-bit images.

 

ORDER_BGRORGRAYORROMM

[6] Load the image as red, green, blue OR as a 12 or 16-bit grayscale image OR as ROMM. 12 and 16-bit grayscale images are supported in the Document/Medical Imaging editions only. ROMM only supports 24 and 48-bit color images.

uFlags

Binary flags that determine the behavior of L_LoadFile. You can specify one or more of the following values:

 

Value

Meaning

 

LOADFILE_ALLOCATE

[0x0001] The function allocates memory for the specified bitmap. (This takes place in addition to the actions of your callback function.)

 

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_NOINITBITMAP

[0x0020] The function does not initialize the bitmap handle when it loads the file. Use this flag only if you are supplying all of the required information in the BITMAPHANDLE structure.

 

LOADFILE_COMPRESSED

[0x0040] (Document/Medical only) If possible, load the file as a 1-bit RLE-compressed image. For more information, refer to Speeding Up 1-Bit Documents.

 

LOADFILE_SUPERCOMPRESSED

[0x0080] (Document/Medical only) Load 1-bit, 8-bit, or 24-bit images as super compressed. This flag is ignored if the bitmaps are not loaded as 1-bit, 8-bit, or 24-bit. Please note that 8-bit images will be loaded as grayscale, even if the source image is color.

pfnCallback

Optional callback function for additional processing.

 

image\sqrblit.gif If you do not provide a callback function, use NULL as the value of this parameter.

 

image\sqrblit.gif 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 L_FAR *. 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.

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

Support for 12 and 16-bit grayscale images is only available in the Document/Medical Imaging editions .

Before calling this function, you may need to get or set file information, such as the page number of a multi-page file or the resolution of a PCD file. Refer to Getting and Setting File Information.

The callback function can display the image to the screen, write to a file, or do other useful things. L_LoadFile will create a buffer and fill it with the actual image data. Once the buffer is full, the callback function is called.

Note:

More options are available in the LOADFILEOPTION structure.

Note:

For information about loading and saving large TIFF files faster, refer to Loading and Saving Large TIFF Files.

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

Windows 95 / 98 / Me, Windows 2000 / XP, Windows CE.

See Also

Functions:

L_LoadBitmap, L_LoadFileOffset, L_GetCompressFileStamp, L_SetLoadResolution, L_SetPCDResolution, L_SetWMFResolution, L_SetLoadInfoCallback, L_DlgOpen, L_CreatePanWindow,
For Vector files: L_2DGetViewMode, L_2DGetViewPort, L_2DSetViewMode, L_2DSetViewPort, L_GetLoadStatus

Topics:

Raster Image Functions: Loading Files

 

Raster Image Functions: Redirecting Input and Output

 

Raster Image Functions: Input and Output

 

Loading and Saving Images

 

Using a PanWindow

Example

For complete sample code, refer to the RESIZE example.

/****************************************************************************************
This example uses L_LoadFile with 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.

The sample code uses the following global declarations: */
HINSTANCE hInst;   /* Current instance of the application, set by the InitInstance function */
RECT rClientSize;          /* RECT for the client area */
RECT rLeadDest;            /* Destination rectangle for painting */     
RECT rLeadSource;          /* Source rectangle for painting */  
BITMAPHANDLE LeadBitmap;   /* Bitmap handle to hold the loaded image */
FILEINFO FileInfo;         /* LEAD File Information structure. */
FILEREADCALLBACK
 lpfnCallBack; 

/* 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;

/* Prototype for the FILEREADCALLBACK function */
L_INT L_EXPORT EXT_CALLBACK LoadImageCB(pFILEINFO pFileInfo, pBITMAPHANDLE pBitmap, 
             L_UCHAR L_FAR *pBuffer,
             L_UINT uFlags, L_INT nRow, L_INT nLines, IMAGECBPARM L_FAR* pUserData );
/****************************************************************************************/
void TestFunction(HWND hWnd)
{
   static IMAGECBPARM UserData; /* Structure used for the callback function's user data */
   /* Get the client area of the window. We assume that elsewhere in the program, the
   L_FileInfo function has been used to update the FileInfo structure and that the
   window dimensions have been adjusted to the bitmap's aspect ratio. */
   GetClientRect(hWnd,&rClientSize);
   /* Make the destination rectangle for painting the same as the client area */
   rLeadDest = rClientSize;
   /* Initialize the bitmap handle */
   L_InitBitmap( &LeadBitmap, sizeof(BITMAPHANDLE), FileInfo.Width, FileInfo.Height, FileInfo.BitsPerPixel );
   LeadBitmap.ViewPerspective = FileInfo.ViewPerspective;
   /* Set the user data used for the callback in the L_LoadFile function */
   UserData.hwnd = hWnd;         /* Current window */
   UserData.hdc = GetDC( hWnd ); /* Device context for the current window */
   /* Set the callback function for the L_LoadFile function.*/
   lpfnCallBack = (FILEREADCALLBACK) MakeProcInstance(
      (FARPROC) LoadImageCB, hInst );
   /* Load the file, calling lpfnCallBack to paint the bitmap. */
   L_LoadFile( TEXT("GIRL.TGA"),
               &LeadBitmap, sizeof(BITMAPHANDLE),
               0,
               ORDER_BGR,
               LOADFILE_ALLOCATE |  LOADFILE_STORE,
               lpfnCallBack,
               &UserData,
               NULL, NULL);
   FreeProcInstance ((FARPROC) lpfnCallBack);
   /* Avoid an unnecessary repaint */
   ValidateRect(hWnd, &rLeadDest);
}
/**************************************************************************************/
 

BITMAPHANDLE Bitmap;
LOADFILEOPTION LoadFileOption;

// Load an image with the viewing transformations and color transformations
L_GetDefaultLoadFileOption
(&LoadFileOption, sizeof(LOADFILEOPTION));
LoadFileOption.Flags &= ~(ELO_IGNOREVIEWTRANSFORMS | ELO_IGNORECOLORTRANSFORMS);
L_LoadFile
(TEXT("TEST.FPX"), &Bitmap, sizeof(BITMAPHANDLE), 0,ORDER_RGB, LOADFILE_ALLOCATE|LOADFILE_STORE, NULL,NULL, &LoadFileOption, NULL);

// Load an image without the viewing transformations
L_GetDefaultLoadFileOption
(&LoadFileOption, sizeof(LOADFILEOPTION));
LoadFileOption.Flags |= ELO_IGNOREVIEWTRANSFORMS;
L_LoadFile
(TEXT("TEST.FPX"), &Bitmap, sizeof(BITMAPHANDLE), 0,ORDER_RGB, LOADFILE_ALLOCATE|LOADFILE_STORE, NULL,NULL, &LoadFileOption, NULL);

// Load an image without the color transformations
L_GetDefaultLoadFileOption
(&LoadFileOption, sizeof(LOADFILEOPTION));
LoadFileOption.Flags |= ELO_IGNORECOLORTRANSFORMS;
L_LoadFile
(TEXT("TEST.FPX"), &Bitmap, sizeof(BITMAPHANDLE), 0,ORDER_RGB, LOADFILE_ALLOCATE|LOADFILE_STORE, NULL,NULL, &LoadFileOption, NULL);

// Load an image without the viewing and color transformations
L_GetDefaultLoadFileOption
(&LoadFileOption, sizeof(LOADFILEOPTION));
LoadFileOption.Flags |= ELO_IGNOREVIEWTRANSFORMS | ELO_IGNORECOLORTRANSFORMS;
L_LoadFile
(TEXT("TEST.FPX"), &Bitmap, sizeof(BITMAPHANDLE), 0,ORDER_RGB, LOADFILE_ALLOCATE|LOADFILE_STORE, NULL,NULL, &LoadFileOption, NULL);