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

Download  Support Forum 

File Details

  • Downloads:
  • 4
  • File Size:
  • 7.1 MB
  • Posted By:
  • Sergey Vlasov
  • Views:
  • 6
  • Date Added:
  • : 3 weeks ago [3/24/2022]

Release Notes

Description

The MSI installer for Aspose.Drawing for .NET 22.3

File Details

Set Negative Pen.Width

Sometimes even Pen Width of 1 is too wide for some laser printers. A quick fix for such scenarios is setting the pen width to negative. From this release it is allowed to set the value of Pen.Width to negative. The following C# code sample demonstrates how to set various widths to Pen 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);

for (int i = 1; i < 8; ++i)
{
    Pen pen = new Pen(Color.Blue, i);
    graphics.DrawLine(pen, 100, i * 100, 900, i * 100);
}

bitmap.Save("Width.png");

IsGenericTypographic StringFormat Property

Added the copyable IsGenericTypographic StringFormat property to handle the Typography via API in a better way.

Rorate & Flip 24-bit Bitmap (BMP)

Added the functionality to rotate and flip 24-bit bitmap BMP graphics.

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

 English