製品を閲覧する

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

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

ファイルの詳細

  • ダウンロード:
  • 4
  • ファイルサイズ:
  • 7.1 MB
  • Posted By:
  • セルゲイ・ブラソフ
  • ビュー:
  • 6
  • 追加日:
  • : 3 weeks ago [3/24/2022]

リリースノート

説明

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

ファイルの詳細

負の Pen.Width を設定

一部のレーザー プリンタでは、ペン幅 1 でさえ広すぎる場合があります。このようなシナリオの簡単な修正は、ペンの幅を負に設定することです。このリリースから、「Pen.Width」の値を負に設定できるようになりました。次の C# コード サンプルは、API を使用して Pen にさまざまな幅を設定する方法を示しています。

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

IsGenericTypographic StringFormat プロパティ

より良い方法で API を介してタイポグラフィを処理するために、コピー可能な IsGenericTypographic StringFormat プロパティを追加しました。

Rorate & Flip 24-bit Bitmap (BMP)

24 ビット ビットマップ BMP グラフィックスを回転および反転する機能が追加されました。

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

 日本