.NET API for Image Processing
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
It is a standalone Imaging API consists of C# routines that enable your .NET applications to draw as well as perform basic to advanced level processing of raster & vector images.
Aspose.Imaging for .NET offers robust image compression and high processing speed through native byte access and a range of efficient algorithms. It not only manipulate, export, and convert images but also lets you dynamically draw objects using pixel manipulation and Graphics Path.
Imaging API Features
- Draw raster images with graphics.
- Draw vector images.
- Converting images to various formats.
- Apply masking as well as Median & Wiener filters.
- Crop, rotate & resize images via API.
- De-skew & transform images.
- Set image properties.
Raster Formats: JPEG2000, JPEG, BMP, TIFF, GIF, PNG, APNG
Medical Imaging: DICOM
Metafiles: EMF, WMF, EMZ, WMZ
Truevision: TGA
Vector Graphics: SVG, SVGZ
Save Images As
Fixed: PDF
Photoshop: PSD
Web: HTML5 Canvas
eBook: DjVu
Digital Camera Raw: DNG
OpenOffice: ODG, OTG
Bitmap: DIB
Web Image: WebP
CorelDRAW: CDR (X6, X7), CMX (V2.0 32-bit)
PostScript: EPS
Aspose.Imaging for .NET can be used to develop applications on Windows Desktop (x86, x64), Windows Server (x86, x64), Windows Azure, Windows Embedded (CE 6.0 R2), as well as Linux x64. The supported platforms include .NET Framework version 2.0 or higher, and .NET Compact Framework 3.5.
Get Started with
Are you ready to give Aspose.Imaging for .NET a try? Simply execute Install-Package Aspose.Imaging
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Imaging for .NET and want to upgrade the version, please execute Update-Package Aspose.Imaging
to get the latest version.
Resize a JPG
Image via C# Code
Execute the below code snippet to see how Aspose.Imaging performs in your environment or please visit the GitHub Repository for other common usage scenarios.
using(Image image = Image.Load(dir + "template.jpg")) {
image.Resize(300, 300);
image.Save(dir + "output.jpg");
}
Recover a Broken TIFF
using C# Code
You can programmatically recover a damaged TIFF file with the help of Aspose.Imaging for .NET API as demonstrated below.
// create an instance of LoadOptions and set LoadOptions properties
var loadOptions = new LoadOptions();
loadOptions.DataRecoveryMode = DataRecoveryMode.ConsistentRecover;
loadOptions.DataBackgroundColor = Color.Red;
// create an instance of Image and load a damaged image by passing the instance of LoadOptions
using(var image = Image.Load(dir + "template.tiff", loadOptions)) {
// do processing
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License