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

Download  Support Forum 

File Details

  • Téléchargements :
  • 2
  • Taille du fichier :
  • 7.1 MB
  • Posted By:
  • Sergueï Vlasov
  • Vues :
  • 15
  • Date d'ajout :
  • 1/28/2022

Notes de version

La description

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

File Details

Propriété Image.Tag

Ajout de la propriété Image.Tag qui fournit des données supplémentaires concernant l’image.

Amélioration des performances lors de l’enregistrement en PNG

Les performances ont été optimisées pour le rendu et l’enregistrement PNG. Le code C# suivant affiche PNG à l’aide de l’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");

Dessin d’arc amélioré

Améliorations apportées au dessin Arc pour avoir un résultat plus précis. Le code C# suivant montre comment dessiner Arc et enregistrer au format PNG à 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);

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

bitmap.Save("DrawArc.png");

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

 Français