GdPicture.NET.14
GdPicture14 Namespace / GdPictureImaging Class / TiffMergeFileList Method
A string containing the file paths of all image files you want to merge, for example "file1.tif,file2.tif". Please use only comma as a file path separator in the given string.
The file path of the destination TIFF image file.
A member of the TiffCompression enumeration. The resulting TIFF compression scheme to be used.





In This Topic
TiffMergeFileList Method (GdPictureImaging)
In This Topic
Merges several image files according to their file paths stored in the input parameter. The result is saved as a multipage TIFF image file to a file path you have specified.
Syntax
'Declaration
 
Public Function TiffMergeFileList( _
   ByVal FilesList As String, _
   ByVal FileDest As String, _
   ByVal Compression As TiffCompression _
) As GdPictureStatus
public GdPictureStatus TiffMergeFileList( 
   string FilesList,
   string FileDest,
   TiffCompression Compression
)
public function TiffMergeFileList( 
    FilesList: String;
    FileDest: String;
    Compression: TiffCompression
): GdPictureStatus; 
public function TiffMergeFileList( 
   FilesList : String,
   FileDest : String,
   Compression : TiffCompression
) : GdPictureStatus;
public: GdPictureStatus TiffMergeFileList( 
   string* FilesList,
   string* FileDest,
   TiffCompression Compression
) 
public:
GdPictureStatus TiffMergeFileList( 
   String^ FilesList,
   String^ FileDest,
   TiffCompression Compression
) 

Parameters

FilesList
A string containing the file paths of all image files you want to merge, for example "file1.tif,file2.tif". Please use only comma as a file path separator in the given string.
FileDest
The file path of the destination TIFF image file.
Compression
A member of the TiffCompression enumeration. The resulting TIFF compression scheme to be used.

Return Value

A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK. We strongly recommend always checking this status first.
Remarks
Supported input document formats are listed here.

Be aware that if you are applying CCITT3 or CCITT4 compression scheme, the source images can only be 1bpp, otherwise the LZW compression scheme is used.

See Also