Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
46 lines (31 loc) · 2.54 KB

README.md

File metadata and controls

46 lines (31 loc) · 2.54 KB

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 with 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.

Installation

You can download GemBox.Imaging from NuGet 📦 or from Downloads 🛠️.

Resources