製品を閲覧する

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

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

ファイルの詳細

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

リリースノート

説明

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

ファイルの詳細

ペンの独立した StartCap と EndCap

Pen に独立した StartCap と EndCap を実装しました。これにより、API を介して、描画された線の最初と最後にキャップ スタイルをより柔軟に設定できます。次の C# コード サンプルは、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 bluePen = new Pen(Color.Blue, 2);
graphics.DrawLine(bluePen, 100, 100, 900, 100);

Pen redPen = new Pen(Color.FromArgb(255, 255, 0, 0), 2);
graphics.DrawLine(redPen, 100, 200, 900, 200);

bitmap.Save("Colors.png");

標準ライン キャップ形状を追加

フラット、スクエア、ラウンド、トライアングル、DiamondAnchor、RoundAnchor、カスタムなど、さまざまなタイプの標準 line cap shapes を追加しました。

拡張された TIFF 形式のサポート

このリリースでは、TIFF (Tagged Image File Format) ラスター グラフィックスのサポートが強化されています。

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

 日本