Browse our Products

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.

Aspose.Imaging Image Album Micro Application

It allows creation of the image album in the desired image format.


Product Page | Docs | Demos | Blog | Free Support | Temporary License | EULA

Competitive features

  • You may combine your photos or images in single multi page document;

  • Original photo aspect ratio is preserved;

  • Input photos or images are auto adjusted to the page size;

  • Various input and several suitable output image formats (pdf, tiff, dicom) are supported as per Aspose.Imaging supported file formats list;

  • Aspose.Imaging Image Album Micro Application may be used via the command line or consumed by your C# code via .NET7 compatible API.

Licensing

Although Aspose.Imaging Image Album 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 Album application installed.

Installation

Please issue the command :


Usage

Use from command line:


Use from code:

Please install Aspose.Imaging.Image-Album 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 ImageAlbumOptions()
{
	InputImages = "photo_1.jpg+photo_2.jpg+photo_3.jpg+photo_4.jpg+photo_5.jpg+photo_6.jpg".Split("+"),
	ToFormat = "pdf",
	BackgroundColor = "White",
	MarginSize = 3,
	AdjustmentType = PageAdjustmentTypes.Biggest,
	OutputImagePath = "photo_album_licensed.pdf"
};

// You may set path to your Aspose.Imaging .NET license file via parameters			
if (isLicensed)
{
	options.LicenseFile = "Aspose.Imaging.Product.Family.lic";
}

await ImageAlbumTasks.Create(options).Execute();