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.
- Covert images to and from PNG, JPEG, GIF, and TIFF formats.
- Resize, crop, rotate, and flip images.
- Read image properties without loading pixel data.
- Apply filters to an image for adjusting brightness, contrast, saturation, colors, and more.
- Merge and split frames of multi-frame image formats like GIF and TIFF.
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.
You can download GemBox.Imaging from NuGet 📦 or from Downloads 🛠️.