Blader door onze producten

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 für .NET 22.1

Downloaden  Helpforum 

Bestandsdetails

  • Downloads:
  • 2
  • Dateigröße:
  • 7.1 MB
  • Posted By:
  • Sergey Vlasov
  • Ansichten:
  • 15
  • Hinzugefügt am:
  • 1/28/2022

Versionshinweise

Beschreibung

Das MSI-Installationsprogramm für Aspose.Drawing für .NET 22.1

Bestandsdetails

Image.Tag-Eigenschaft

Die Image.Tag-Eigenschaft wurde hinzugefügt, die zusätzliche Daten zum Bild bereitstellt.

Verbesserte Leistung beim Speichern in PNG

Die Leistung wurde für das Rendern und Speichern von PNG optimiert. Der folgende C#-Code rendert PNG mithilfe der 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");

Verbesserte Bogenzeichnung

Verbesserungen an der Bogenzeichnung vorgenommen, um ein genaueres Ergebnis zu erzielen. Der folgende C#-Code zeigt, wie Sie einen Bogen zeichnen und mithilfe der API als PNG speichern:

// 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");

Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.Drawing for .NET 22.1 Release Notes.

 Deutsch