製品を閲覧する

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.

 

.NET 22.1 用の Aspose.Drawing

ダウンロード  サポートフォーラム 

ファイルの詳細

  • ダウンロード:
  • 2
  • ファイルサイズ:
  • 7.1 MB
  • Posted By:
  • Sergey Vlasov
  • ビュー:
  • 15
  • 追加日:
  • 1/28/2022

リリースノート

説明

Aspose.Drawing for .NET 22.1 の MSI インストーラー

ファイルの詳細

Image.Tag プロパティ

画像に関する追加データを提供する Image.Tag プロパティを追加しました。

PNG で保存する際のパフォーマンスの向上

PNG のレンダリングと保存のパフォーマンスが最適化されました。次の C# コードは、API を使用して PNG をレンダリングします。

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

円弧描画の改善

より正確な結果が得られるように、アークの描画を改善しました。次の C# コードは、Arc を描画し、API を使用して PNG として保存する方法を示しています。

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

このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Drawing for .NET 22.1 Release Notes にアクセスしてください。

 日本