GroupDocs.Merger allows developers to combine multiple TIFF documents in the preferred order and save them as a single file.
About TIFF File Format
TIFF, Tag Image File Format, is a computer file used to store raster graphics and image information. A favorite among photographers, TIFFs are a handy way to store high-quality images before editing if you want to avoid lossy file formats.
Download and Configure
Use the downloads section to download API DLLs or MSI installer or NuGet:
PM>Install-PackageGroupDocs.Merger
Source TIFF images
How to merge TIFF files in vertical mode
The following example demonstrates how to merge image files in vertical mode with several lines of C# code:
Create an instance of Merger class and pass source image file path as a constructor parameter. You may specify absolute or relative file path as per your requirements.
Add another image file to merge with Join method and pass instance of ImageJoinOptions class as a method parameter. Repeat this step for other image documents you want to merge.
Call Merger class Save method and specify the filename for the merged image file as parameter.
// Load the source image fileusing(Mergermerger=newMerger(@"c:\sample1.tiff")){// Define image join options with vertical join modeImageJoinOptionsjoinOptions=newImageJoinOptions(ImageJoinMode.Vertical);// Add another image file to mergemerger.Join(@"c:\sample2.tiff",joinOptions);// Add next image file to mergemerger.Join(@"c:\sample3.tiff",joinOptions);// Merge image files and save resultmerger.Save(@"c:\merged.tiff");}