GemBox.Imaging 10.0.1160

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package GemBox.Imaging --version 10.0.1160
NuGet\Install-Package GemBox.Imaging -Version 10.0.1160
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GemBox.Imaging" Version="10.0.1160" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GemBox.Imaging --version 10.0.1160
#r "nuget: GemBox.Imaging, 10.0.1160"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GemBox.Imaging as a Cake Addin
#addin nuget:?package=GemBox.Imaging&version=10.0.1160

// Install GemBox.Imaging as a Cake Tool
#tool nuget:?package=GemBox.Imaging&version=10.0.1160

What is GemBox.Imaging

GemBox.Imaging is a .NET component that enables you to read, convert, and transform image files (PNG, JPEG, and GIF) from .NET applications.

With GemBox.Imaging you get a fast and reliable component that’s easy to use and doesn't depend on Microsoft Windows GDI. It requires only .NET so you can deploy your applications on any platform.

GemBox.Imaging Features

Get Started

You are not sure how to start working editing images in .NET using GemBox.Imaging? Check the code below that shows how to load example image, resize it to thumbnail size and then save Image instance to image file.

// If using Professional version, put your serial key below.
ComponentInfo.SetLicense("FREE-LIMITED-KEY");

//Load image
using (var image = Image.Load("FragonardReader.jpg"))
        
// Resize the image
image.Resize(64, 64);

// Save the resized image
image.Save("HelloWorld.png");

For more GemBox.Imaging code examples and demos, please visit our examples page.

Resources

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on GemBox.Imaging:

Package Downloads
GemBox.Bundle The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

GemBox.Bundle is a package of .NET components for processing spreadsheets, documents, presentations, email messages, and images (XLSX, DOCX, PPTX, PDF, MSG, and PNG) from .NET applications. With GemBox.Bundle you get fast and reliable components that are easy to use and don't depend on Microsoft Office or Adobe Acrobat. They require only .NET so you can deploy your applications without having to think about other licenses.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
10.0.1160 253 3/4/2024
10.0.1155 387 2/13/2024
10.0.1147 565 1/15/2024
10.0.1139 399 12/8/2023
10.0.1126 1,299 11/16/2023
10.0.1115 395 10/21/2023
10.0.1096 5,431 9/5/2023
10.0.1086 448 8/4/2023
10.0.1079 1,244 7/7/2023
10.0.1073 860 6/12/2023
10.0.1058 2,209 5/9/2023
10.0.1046 450 4/5/2023
10.0.1033 271 3/10/2023
10.0.1024 911 2/3/2023
10.0.1015 618 1/3/2023
10.0.1007 318 12/14/2022
10.0.1000 2,192 11/17/2022

Fixed issue with Image.Dispose method.