Aspose.Imaging
22.12.0
See the version list below for details.
dotnet add package Aspose.Imaging --version 22.12.0
NuGet\Install-Package Aspose.Imaging -Version 22.12.0
<PackageReference Include="Aspose.Imaging" Version="22.12.0" />
paket add Aspose.Imaging --version 22.12.0
#r "nuget: Aspose.Imaging, 22.12.0"
// Install Aspose.Imaging as a Cake Addin
#addin nuget:?package=Aspose.Imaging&version=22.12.0
// Install Aspose.Imaging as a Cake Tool
#tool nuget:?package=Aspose.Imaging&version=22.12.0
.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.
Read & Write Image Formats
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
Read Image Formats
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
Platform Independence
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.
Getting Started with Aspose.Imaging for .NET
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
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net20 net35 net35-client net40 net40-client net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.1
- System.Drawing.Common (>= 5.0.0)
- System.Security.Permissions (>= 5.0.0)
- System.Text.Encoding.CodePages (>= 5.0.0)
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 3.5 Client
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.0 Client
- No dependencies.
-
.NETStandard 2.0
- System.Drawing.Common (>= 5.0.0)
- System.Security.Permissions (>= 5.0.0)
- System.Text.Encoding.CodePages (>= 5.0.0)
-
net5.0
- System.Drawing.Common (>= 5.0.0)
- System.Security.Permissions (>= 5.0.0)
- System.Text.Encoding.CodePages (>= 5.0.0)
-
net6.0
- System.Drawing.Common (>= 5.0.0)
- System.Security.Permissions (>= 5.0.0)
- System.Text.Encoding.CodePages (>= 5.0.0)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on Aspose.Imaging:
Package | Downloads |
---|---|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications. |
|
Weavy.Core
A class library containing core business logic, data access and utility methods required by Weavy. |
|
SenseNet.Preview.Aspose.PreviewImageGenerators
Aspose Preview image generator classes for the sensenet platform. |
|
SenseNet.Preview.Aspose
sensenet Aspose Preview Provider makes it possible to generate and serve preview images using Aspose libraries. |
|
NovaQual.DocumentConversionLib
This contains all the document conversions functionality e.g word to pdf, exce to pdf etc |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
23.3.0-beta | 119 | 3/18/2023 |
23.2.0 | 10,875 | 2/20/2023 |
22.12.0 | 30,107 | 12/5/2022 |
22.11.0 | 17,129 | 11/14/2022 |
22.10.0 | 26,467 | 10/3/2022 |
22.10.0-beta | 3,455 | 9/28/2022 |
22.9.0 | 15,082 | 9/2/2022 |
22.8.0 | 20,672 | 8/4/2022 |
22.7.0 | 16,283 | 7/7/2022 |
22.6.0 | 18,542 | 6/7/2022 |
22.6.0-beta2 | 272 | 6/1/2022 |
22.5.0 | 31,708 | 5/13/2022 |
22.4.0 | 29,323 | 4/11/2022 |
22.3.0 | 49,220 | 3/7/2022 |
22.2.0 | 74,835 | 2/1/2022 |
21.12.0 | 46,175 | 12/1/2021 |
21.11.0 | 15,312 | 11/3/2021 |
21.10.0 | 14,936 | 10/7/2021 |
21.9.0 | 26,095 | 9/13/2021 |
21.9.0-beta | 4,833 | 8/23/2021 |
21.8.0 | 23,532 | 8/5/2021 |
21.8.0-beta | 1,992 | 7/19/2021 |
21.7.0 | 20,255 | 7/5/2021 |
21.7.0-beta | 3,098 | 6/21/2021 |
21.6.0 | 26,214 | 6/1/2021 |
21.6.0-beta | 1,726 | 5/21/2021 |
21.5.0 | 35,387 | 5/6/2021 |
21.5.0-beta | 2,046 | 4/19/2021 |
21.4.0 | 19,026 | 4/5/2021 |
21.3.0 | 32,268 | 3/9/2021 |
21.3.0-beta | 3,580 | 2/20/2021 |
21.2.0 | 12,781 | 2/8/2021 |
21.2.0-beta2 | 244 | 2/19/2021 |
21.2.0-beta | 254 | 2/3/2021 |
20.12.0 | 13,295 | 12/31/2020 |
20.12.0-beta | 1,524 | 12/16/2020 |
20.11.0 | 16,374 | 11/26/2020 |
20.11.0-beta | 1,187 | 11/17/2020 |
20.10.0 | 11,312 | 10/24/2020 |
20.10.0-beta | 2,310 | 10/16/2020 |
20.9.0 | 20,428 | 9/28/2020 |
20.9.0-beta | 457 | 9/16/2020 |
20.8.0 | 9,488 | 8/26/2020 |
20.8.0-beta | 1,824 | 8/12/2020 |
20.7.0 | 9,144 | 7/22/2020 |
20.6.0 | 14,200 | 6/17/2020 |
20.5.0 | 17,478 | 5/20/2020 |
20.4.0 | 17,047 | 4/23/2020 |
20.3.0 | 104,552 | 3/19/2020 |
20.2.0 | 8,519 | 2/21/2020 |
19.12.0 | 34,426 | 12/16/2019 |
19.11.0 | 25,476 | 11/13/2019 |
19.10.0 | 9,483 | 10/4/2019 |
19.9.0 | 16,314 | 9/10/2019 |
19.7.0 | 4,458 | 7/30/2019 |
19.6.0 | 7,287 | 6/28/2019 |
19.4.0 | 19,147 | 4/25/2019 |
19.3.0 | 6,836 | 3/28/2019 |
19.2.0 | 6,126 | 2/27/2019 |
19.1.0 | 8,308 | 1/23/2019 |
18.11.0 | 9,002 | 11/26/2018 |
18.9.0 | 22,546 | 9/26/2018 |
18.8.0 | 7,632 | 8/30/2018 |
18.7.0 | 29,544 | 7/23/2018 |
18.6.0 | 2,850 | 6/12/2018 |
18.4.0 | 3,155 | 4/30/2018 |
18.3.0 | 4,591 | 3/29/2018 |
18.2.0 | 2,926 | 2/22/2018 |
17.12.0 | 15,603 | 12/28/2017 |
17.11.0 | 1,930 | 11/29/2017 |
17.9.0 | 9,703 | 9/29/2017 |
17.7.0 | 8,244 | 7/28/2017 |
17.6.0 | 1,712 | 6/30/2017 |
17.4.0 | 8,140 | 4/21/2017 |
17.3.0 | 3,246 | 3/14/2017 |
17.1.0 | 2,986 | 1/31/2017 |
16.12.0 | 4,788 | 12/30/2016 |
16.10.0 | 10,219 | 10/25/2016 |
4.0.0 | 11,796 | 9/12/2016 |
3.9.0 | 1,892 | 8/11/2016 |
3.8.0 | 34,253 | 7/11/2016 |
3.7.0 | 6,680 | 6/14/2016 |
3.6.0 | 23,609 | 5/11/2016 |
3.5.0 | 1,532 | 4/11/2016 |
3.4.0 | 2,538 | 3/11/2016 |
3.3.0 | 6,966 | 2/8/2016 |
3.2.0 | 11,722 | 12/1/2015 |
3.1.0 | 7,419 | 9/21/2015 |
3.0.0 | 12,207 | 6/22/2015 |
2.9.0 | 3,748 | 4/22/2015 |
2.8.0 | 33,856 | 3/2/2015 |
2.7.1 | 2,677 | 12/31/2014 |
2.6.0 | 2,832 | 9/19/2014 |
2.5.0 | 1,676 | 7/22/2014 |
2.4.0 | 2,433 | 5/8/2014 |
2.3.1 | 1,622 | 4/3/2014 |
2.3.0.1 | 1,412 | 3/31/2014 |
2.3.0 | 1,665 | 3/20/2014 |
2.2.0 | 1,887 | 12/30/2013 |
2.1.0 | 4,441 | 11/7/2013 |
2.0.0 | 1,478 | 9/24/2013 |
1.9.0 | 1,582 | 7/22/2013 |
1.8.0 | 1,706 | 5/28/2013 |
1.7.0 | 5,292 | 8/29/2012 |
1.6.0 | 1,600 | 7/17/2012 |
1.5.0 | 1,547 | 5/9/2012 |
1.4.0 | 1,599 | 3/7/2012 |
1.3.0.1 | 1,493 | 2/16/2012 |
1.3.0 | 1,764 | 1/24/2012 |