If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.Imaging Image Merge Micro Application
It allows creation of collage from several input images in desired image format.
Product Page | Docs | Demos | Blog | Free Support | Temporary License | EULA
Competitive features
Various input and output image formats are supported as per Aspose.Imaging supported file formats list;
Various merge layouts are supported (Horizontal, Vertical, Grid);
Various image adjustments are supported (to the Biggest image, to the Smallest image, or without adjustment (None));
Resulting image may be limited by width, height;
Setting of margin size and background color are supported;
Background color may be specifed using verbal definition or Html Hex code notation ("#RRGGBB", “#RGB”, “#RRGGBBAA”, “#RGBA”);
We always keep the aspect ratio on merge, so the proportions of your photo are not affected;
Aspose.Imaging Image merge micro application may be used via the command line or consumed by your C# code via.NET7 compatible API.
Licensing
Although Aspose.Imaging Image Merge Micro Application is free, Aspose.Imaging .NET is licensed as usual, so you may reuse your
license via application or evaluate the application using Aspose.Imaging .NET in trial mode or request Temporary license.
System Requirements
.NET7 on Windows, Linux, MacOs;
Aspose.Imaging Image Merge application installed.
Installation
Please issue the command :
Usage
Use from command line:
Use from code:
Please install Aspose.Imaging.Image-Merge Micro App first.
To add required references to your project please issue command
setting YourProjectFolder to the real value or simply run
from the project folder.
var options = new ImagingMergeOptions()
{
InputImages = "photo_1.jpg+photo_2.jpg+photo_3.jpg+photo_4.jpg+photo_5.jpg+photo_6.jpg".Split("+"),
ToFormat = "png",
BackgroundColor = "MediumSeaGreen",
Direction = MergeDirection.Vertical,
MarginSize = 3,
AdjustmentType = MergeAdjustmentTypes.Biggest,
OutputImagePath = "photo_collage_licensed.png",
MaxRows = 3,
MaxColumns = 2,
MaxWidth = 500
};
// You may set path to your Aspose.Imaging .NET license file via parameters
if (isLicensed)
{
options.LicenseFile = "Aspose.Total.Product.Family.lic";
}
await MergeTasks.Create(options).Execute();