#include "BITIFF.H"
LPTSTR CALLBACK AppendCCITTImageFile( LPTSTR lpszDestFileName,
LPTSTR lpszTIFFFileName,
int nImage,
int nSkipLinesCnt)
Description
Appends the image specified by the lpszTIFFFileName parameter to the TIFF file specified by the lpszDestFileName parameter. If the nSkipLinesCnt parameter is a positive value, the function will append all the scan lines in the source image below the position specified by the nSkipLinesCnt parameter, to the destination file. If the nSkipLinesCnt parameter is a negative value, the function will append all the scan lines in the source image above the position specified by the nSkipLinesCnt parameter, to the destination file.
Parameters
|
LPTSTR |
lpszDestFileName |
Destination image file name. |
|
LPTSTR |
lpszTIFFFileName |
Source file name. |
|
int |
nImage |
Specifies which image from the source file will be appended. |
|
int |
nSkipLinesCnt |
Specifies the starting point where the appending will start and also specifies which portion of the source image will be appended to the destination file. |
Additional Information
This example shows how to use the dll when loading statically including the header file. Otherwise if the dll is loaded dynamically, for further information read the “About the difference of static and dynamic library loading” section of the manual.
Return values
Returns the destination filename on success, NULL on failure.
Requirements
Header : Declared in BiTiff.h; include BiTiff.h.
Library : Use BiTIFF.lib.
DLLs : BiTiff.dll.