|
Combine two TIFF Files into a single multi page TIFF File without displaying or decoding any of the images.
Public Function TIFMerge( _ ByVal strTIFFile1 As String, _ ByVal strTIFFile2 As String, _ ByVal strOutputTIFFile As String ) As Boolean
|
Parameter
strTIFFile1 The source of first TIFF file.
strTIFFile2 The source of second TIFF file.
strOutputTIFFile The destination TIFF File.
Return Value
Return True - successful Return False - Failed
Example
|
Visual Basic Syntax ImageViewer1.TIFMerge "c:\source1.tif", "c:\source2.tif","c:\output.tif"
|
|
|