Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Drawing for .NET 22.1

Download  Support Forum 

File Details

  • Downloads:
  • 2
  • File Size:
  • 7.1 MB
  • Posted By:
  • Sergey Vlasov
  • Views:
  • 15
  • Date Added:
  • 1/28/2022

Release Notes

Description

The MSI installer for Aspose.Drawing for .NET 22.1

File Details

Image.Tag Property

Added the Image.Tag property that provides additional data regarding the image.

Improved Performance while Saving in PNG

Performance has been optimized for PNG rendering and saving. The following C# code renders PNG using API:

// Example to create a new drawing in C# .NET and render as a PNG. 
// See https://github.com/aspose-drawing/Aspose.Drawing-for-.NET and https://docs.aspose.com/drawing/net/ for more examples.
// Create a new drawing
Bitmap bitmap = new Bitmap(1000, 800, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);
Graphics graphics = Graphics.FromImage(bitmap);
// Save drawing
bitmap.Save(RunExamples.GetDataDir() + @"drawing.png");

Improved Arc Drawing

Made improvements to the Arc drawing to have a more accurate outcome. The following C# code demonstrates how to draw Arc and save as PNG using API:

// For complete examples and data files, please go to https://github.com/aspose-drawing/Aspose.Drawing-for-.NET

using System.Drawing;

Bitmap bitmap = new Bitmap(1000, 800, System.Drawing.Imaging.PixelFormat.Format32bppPArgb);
Graphics graphics = Graphics.FromImage(bitmap);

Pen pen = new Pen(Color.Blue, 2);
graphics.DrawArc(pen, 0, 0, 700, 700, 0, 180);

bitmap.Save("DrawArc.png");

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Drawing for .NET 22.1 Release Notes.

 English