GroupDocs.Merger allows developers to combine multiple JPG documents in the preferred order and save them as a single file.
About JPG File Format
JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality.
Download and Configure
Use the downloads section to download API DLLs or MSI installer or NuGet:
PM>Install-PackageGroupDocs.Merger
Source JPG images
How to merge JPG files as photo collage
The following example demonstrates how to merge image files as photo collage 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.jpg")){// Define image join options with horizontal join modeImageJoinOptionsjoinOptions=newImageJoinOptions(ImageJoinMode.Horizontal);// Add another image file to mergemerger.Join(@"c:\sample2.jpg",joinOptions);// Define image join options with vertical join modejoinOptions=newImageJoinOptions(ImageJoinMode.Vertical);// Add next image file to mergemerger.Join(@"c:\sample3.jpg",joinOptions);// Merge image files and save resultmerger.Save(@"c:\merged.jpg");}