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 pour .NET 22.3

Download  Support Forum 

File Details

  • Téléchargements :
  • 4
  • Taille du fichier :
  • 7.1 MB
  • Posted By:
  • Sergueï Vlasov
  • Vues :
  • 6
  • Date d'ajout :
  • : 3 weeks ago [3/24/2022]

Notes de version

La description

Le programme d'installation MSI pour Aspose.Drawing pour .NET 22.3

File Details

Définir la largeur de plume négative

Parfois, même une largeur de plume de 1 est trop large pour certaines imprimantes laser. Une solution rapide pour de tels scénarios consiste à définir la largeur du stylo sur négative. À partir de cette version, il est permis de définir la valeur de Pen.Width sur négatif. L’exemple de code C# suivant montre comment définir différentes largeurs pour Pen à l’aide de l’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");

Propriété IsGenericTypographic StringFormat

Ajout de la propriété copiable IsGenericTypographic StringFormat pour mieux gérer la typographie via l’API.

Rorate & Flip Bitmap 24 bits (BMP)

Ajout de la fonctionnalité de rotation et de retournement des graphiques BMP bitmap 24 bits.

Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.Drawing for .NET 22.3 Release Notes.

 Français