FILEINFO

The FILEINFO structure, which is loaded by the LFile::GetInfo function, provides information about the specified file.

NOTE: The LTFIL.H header file describes the entire FILEINFO structure.

Members

L_INT Format

File format. For possible values, refer to Files To Be Included With Your Application.

L_TCHAR Name[_MAX_FNAME+_MAX_EXT]

A character array containing the null-terminated string that is the file name. The name is truncated if it exceeds _MAX_FNAME + _MAX_EXT characters.

L_INT Width

Image width, in pixels.

L_INT Height

Image height, in pixels.

L_INT BitsPerPixel

Bits per pixel.

L_INT32 SizeDisk

Size of the file on disk (in bytes).

L_INT32 SizeMem

Amount of memory (in bytes) required to load the file.

L_TCHAR Compression[20]

A 20-character array containing the null-terminated string that describes the compression method.

L_INT ViewPerspective

Where the beginning of the image is stored. Valid values are TOP_LEFT, BOTTOM_LEFT, TOP_RIGHT, BOTTOM_RIGHT, TOP_LEFT90, and TOP_LEFT270. For descriptions, refer to Accounting for View Perspective.

L_INT Order

Color order of the bitmap. This field is meaningful if the image does not have a palette. It indicates whether the color values are in red-green-blue or blue-green-red order. Possible values are ORDER_RGB, ORDER_BGR and ORDER_GRAY.

L_INT PageNumber

The page number in a multipage file. To determine the total number of pages in a file, call LFile::GetInfo with uFlags set to FILEINFO_TOTALPAGES.

L_INT TotalPages

The total number of pages present in a file. To update this field, call LFile::GetInfo with uFlags set to FILEINFO_TOTALPAGES. If you do not want this field updated, call LFile::GetInfo with uFlags set to 0.

L_INT XResolution

Horizontal resolution, in dots per inch. Some file formats save this value in the file header.

L_INT YResolution

Vertical resolution, in dots per inch. Some file formats save this value in the file header.

L_INT32 Flags

For possible values, refer to FILEINFO Flags.

L_UINT GlobalLoop

Global animation loop count. 0 = infinity. This field is valid only if the FILEINFO_HAS_GLOBALLOOP flag is set.

L_INT GlobalWidth

Global width for animation playback

L_INT GlobalHeight

Global height for animation playback

COLORREF GlobalBackground

Global background color for animation playback (FILEINFO Flags)

RGBQUAD GlobalPalette[256]

Global palette for animation playback (FILEINFO Flags).

L_UINT32 IFD

Offset within a TIFF file where a page starts. This member is updated when LFile::GetInfo is called.

L_INT Layers

Number of layers in the file. If this value is 0, then the file does not contain any layers. Only PSD files can have layers.

L_INT ColorSpace

Color space of the file. Possible values are:

Value Meaning
COLORSPACE_BGR [0] Color space is RGB or BGR
COLORSPACE_YUV [1] Color space is YUV or YCbCr
COLORSPACE_CMYK [2] Color space is CMYK
COLORSPACE_CIELAB [3] Color space is CIELab

L_INT Channels

Number of channles in the file.  If this value is 0, then the file does not contain channels.  Only PSD files can have channels.

L_BOOL bIsDocFile

TRUE if the image file or stream is a document format, FALSE otherwise.

When the value of this member is TRUE, then the image file or stream passed to the L_FileInfo is a document file such as PDF or XPS and dDocPageWidth, dDocPageHeight and uDocUnit will contain the original document logical size. The physical load (rasterization size) is calculated based on the current rasterization values and is stored in Width, Height, XResolution and YResolution.

When the value of this member is FALSE, then the image file or stream is a raster image such as JPEG or TIFF. These files have physical size and dDocPageWidth, dDocPageHeight and uDocUnit should not be used.

L_DOUBLE dDocPageWidth

The logical width of the document. This value is in uDocUnit.

The logical width and height of the document is the original size before rasterization. LEADTOOLS usually returns the logical size in inches.

dDocPageWidth should only be used if the value of bIsDocFile is TRUE.

L_DOUBLE dDocPageHeight

The logical width and height of the document is the original size before rasterization. LEADTOOLS usually returns the logical size in inches.

dDocPageHeight should only be used if the value of bIsDocFile is TRUE.

RASTERIZEDOC_UNIT uDocUnit

The unit for dDocPageWidth and dDocPageHeight. It can be one of the following values:

Value Meaning
RASTERIZEDOC_UNIT_PIXEL [0] Page width and height is in pixels.
RASTERIZEDOC_UNIT_INCH [1] Page width and height is in inches.
RASTERIZEDOC_UNIT_MILLIMETER [2] Page width and height is in millimeters.

L_INT MessageCount

Total number of messages for PST files only.

L_INT nHorzTiles

Number of horizontal tiles.

L_INT nVertTiles

Number of vertical tiles.

Comments

pFILEINFO is a pointer to a FILEINFO structure. Where the function parameter type is pFILEINFO, you can declare a FILEINFO variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pFILEINFO variable is necessary only if your program requires a pointer.

NOTES:

Currently only PSD files support layers.

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

LEADTOOLS Raster Imaging C++ Class Library Help