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 Convert Micro Application
It allows conversion of the image to the 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;
Aspose.Imaging Image Convert Micro Application may be used via the command line or consumed by your C# code via .NET7 compatible API.
Licensing
Although Aspose.Imaging Image Convert 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 Convert application installed.
Installation
Please issue the command :
Usage
Use from command line:
Use from code:
Please install Aspose.Imaging.Image-Convert 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 ImagingConvertOptions()
{
InputImage = "photo_1.jpg",
ToFormat = "png",
OutputImagePath = "photo_converted.png"
};
// You may set path to your Aspose.Imaging .NET license file via parameters
if (isLicensed)
{
options.LicenseFile = "Aspose.Total.Product.Family.lic";
}
await ConvertTasks.Create(options).Execute();