Wordize for .NET is a professional solution for automating image document merging within enterprise document workflows. The Merger class enables C# developers to programmatically combine image files for report preparation, documentation creation, and legal transaction support.
Key Features:Test the capabilities of programmatic image document merging using the interactive online demo presented on this page. Upload multiple image files, specify their merge parameters, execute the operation, and download the consolidated document for review. The provided C# code snippet is fully ready for use in your .NET project.
using Wordize.Merging;
using Wordize.Saving;
ImageSaveOptions saveOptions = new ImageSaveOptions(saveFormat);
saveOptions.PageLayout = MultiPageLayout.Vertical(10);
Merger.Create()
.From("Input1.png")
.From("Input2.png")
.To("Output.png", saveOptions)
.Execute();
using Wordize.Merging;
Merger.Merge("Output.png",
[
"Input1.png",
"Input2.png"
]);
using Wordize.Merging;
using Wordize.Saving;
var imageStreams = Merger.MergeToImages(
["Input1.png", "Input2.png"],
new ImageSaveOptions(SaveFormat.Png) { PageLayout = MultiPageLayout.Vertical(10) },
MergeFormatMode.KeepSourceFormatting
);
using var file = File.Create($"Output.png");
imageStreams[0].Position = 0;
imageStreams[0].CopyTo(file);
using Wordize.Merging;
using Wordize.Saving;
ImageSaveOptions saveOptions = new ImageSaveOptions(saveFormat);
saveOptions.PageLayout = MultiPageLayout.Vertical(10);
Merger.Create()
.From("Input1.png")
.From("Input2.png")
.To("Output.png", saveOptions)
.Execute();
using Wordize.Merging;
Merger.Create()
.From("Input1.png")
.From("Input2.png")
.To("Output.png", SaveFormat.Png)
.Execute();