See Also Examples Applies To
Merge a list of files into a multipage tiff image.
Syntax
object.TiffMergeFileList (sFilesList, sFileDest, nModeCompression)
The TiffMergeFileList syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| sFilesList | Required. Input String. The list of files. Each file must be separated with a comma. |
| sFileDest | Required. String. The destination image file path to create. |
| nModeCompression | Optional. Long. Default value is 2. Specifies type of compression 6:None, 5:RLE, 4:CCITT4, 3:CCITT3, 2:LZW. |
Returns
Long. GdPictureStatus
Remarks
Supported formats are BMP, DIB, RLE, ICO, EMF, WMF, GIF, ANIMATED GIF, JPEG, JPG, JPE, JFIF, PNG, TIFF, MULTIPAGE TIFF, PNM, PPM, PBM, PFM, PGM, RPPM, RPGM, RPBM, PCX.
Redistributing the optional gdimgplug.dll library you will also be able to read XPM, XBM, WBMP, TGA, SGI, RAW, PICT, Sun RAS, PSD, MNG, Kodak PhotoCD files, KOALA files, JP2, J2K, JNG, JBIG, IFF, HDR, Raw Fax G3, EXR, DDS and Dr. Halo files.
Category
Multipage TIFF Functions
Visual Basic Sample
nStat = TiffMergeFileList("c:\images\file1.jpg,c:\images\file2.jpg;c:\images\file3.tif,c:\images\file4.gif", "c:\images\output.tif", CompressionLZW)