Image Processing in Cloud via .NET REST API
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Free Trial
This cloud SDK assists to process & manipulate images from within your C#, ASP.NET & other .NET based cloud applications, without installing any 3rd party tool.
Image Processing Features
- Fetch or update properties of cloud-hosted images.
- Scale, flip, crop, and export an image with a single API call.
- Resize, crop, flip, convert, and export an image to other supported formats.
- Update image parameters of JPEG2000 & WEBP images.
- Access and multi-frame TIFF image and extract the desired frames from it.
- Rotate, flip, crop, resize, or fetch properties of the selected TIFF frame.
- Merge multiple TIFF images.
Vector: SVG
OpenOffice: ODG, OTG
Digital Camera: DNG
Medical Imaging: DICOM
CorelDRAW: CDR, CMX
eBooks: DjVu
Raster Images: JPEG2000, JPEG, BMP, TIFF, GIF, PNG
Metafile: EMF, WMF
Photoshop: PSD
Fixed Layout: PDF
Other: WebP
Get Started
You do not need to install anything to get started with Aspose.Imaging Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.Imaging-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Imaging assembly in your project. If you already have Aspose.Imaging Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.Imaging-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
// for complete examples, please visit https://github.com/aspose-imaging-cloud/aspose-imaging-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var apiInstance = new ImagingApi(clientSecret: MyClientSecret, clientId: MyClientId);
// Convert PNG to JPG
var request = new ConvertImageRequest("sample.png", "jpg", "Converted");
var response = apiInstance.ConvertImage(request);
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Free Trial