ImageGear for C and C++ on Linux v20.0 - Updated
LPFNIG_READ
API Reference Guide > Core Component API Reference > Core Component Callback Functions Reference > LPFNIG_READ

This function will be called during file operations when a READ is required.

Declaration:

 
Copy Code
typedef LONG (ACCUAPI LPFNIG_READ) ( 
        LONG fd, 
        LPBYTE lpBuffer, 
        LONG lSize 
);

Arguments:

Name Type Description
fd LONG File Descriptor handle.
lpBuffer LPBYTE Far pointer to buffer into which to read data.
lSize LONG Number of bytes to read.

Return Value:

Return the number of bytes read, or -1 to indicate that an error occurred.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

See the example for function IG_file_IO_register().

Remarks:

This type of function is established by calling IG_file_IO_register() function.

Is this page helpful?
Yes No
Thanks for your feedback.