Aspose.Imaging for .NET is a .NET library that helps your .NET, C#, VB.NET, and ASP.NET applications to process images and photos: convert to various supported file formats; draw and edit images; implement image transformations (resize, crop, flip and rotate, binarize, grayscale, adjust); advanced image manipulation features (filtering, dithering, masking, deskewing), raw data and metadata (Exif, Xmp) processing, vector and raster images compression; image composition/decomposition to/from multi-page image formats; memory optimization strategies; create an animation from an array of images; remove background from the image. Aspose.Imaging allows manipulate a huge range of popular image file formats: JPG, PNG, GIF, SVG, TIFF, BMP, DICOM, ICO, EPS, TGA, WEBP, CDR, CMX, DjVu, DNG, TGA, HTML5 Canvas, DXF, AVIF, Raster, Metafiles, FODG and so many more. Aspose.Imaging for .NET on-premise API is compatible with both the 32-bit and 64-bit Microsoft Windows Desktop/Server editions, and Linux (x64). You can use Aspose.Imaging for .NET to develop Windows and Web applications in any IDE that targets the .NET, including modern .NET6,.NET7,.Net8 and.NET Core platforms.
$ dotnet add package Aspose.Imaging
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.
Raster Formats: JPEG2000, JPEG, BMP, TIFF, BIGTIFF, GIF, PNG, APNG
Medical Imaging: DICOM
EMF, WMF, EMZ, WMZ
TGA
SVG, SVGZ
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
For the detailed notes, please visit https://releases.aspose.com/imaging/net/release-notes/2023/aspose-imaging-for-net-23-10-release-notes/.
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 4.0 or higher, and .NET Standard 2.0, Net5.0, Net6.0, Net7.0.
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.
Following features are available under plugin licensing for .NET Standard 2.0 and higher configurations.:
Aspose.Imaging Conversion feature
Allows conversion between supported image formats
See conversion landing pages for more details and examples.
Aspose.Imaging Image merge feature
Allows to merge of several images into one.
See image merge landing pages for more details and examples.
Aspose.Imaging Image Image Album feature
Allows to merge of several images into image album in the tiff, dicom, pdf formats.
See image merge landing pages for more details and examples.
Aspose.Imaging Resize for .NET
Allows to resize the image, making downsampling or upsampling.
See image resize landing pages for more details and examples.
Aspose.Imaging Crop for .NET
Allows to crop the image selecting the rectangular part.
See image crop landing pages for more details and examples.
You may review Aspose.Market to get more detailed descriptions and order available plug-in licenses [here]((https://purchase.aspose.market/buy).
JPG Image via C# CodeExecute 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");
}
TIFF using C# CodeYou 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