製品を閲覧する

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.CAD for .NET 22.1

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

ファイルの詳細

  • ダウンロード:
  • 11
  • ファイルサイズ:
  • 59.8 MB
  • Posted By:
  • vitalii.kornyliuk
  • ビュー:
  • 60
  • 追加日:
  • 2/5/2022

ファイルの詳細

改善された STL ファイル処理

このリリースでは、STL 形式のファイルの処理が改善されています。次の C# コード スニペットは、API を介して STL から PNG へのコンバーターとして機能します。

string MyDir = RunExamples.GetDataDir_ConvertingCAD();
string sourceFilePath = MyDir + "galeon.stl";
using (var cadImage = (CadImage)Image.Load(sourceFilePath))
{
var rasterizationOptions = new CadRasterizationOptions();

rasterizationOptions.PageWidth = 100;
rasterizationOptions.PageHeight = 100;

PngOptions pngOptions = new PngOptions();
pngOptions.VectorRasterizationOptions = rasterizationOptions;

string outPath = sourceFilePath + ".png";
cadImage.Save(outPath, pngOptions);
}

Collada 形式のサポート

API のこのリリースでは、「Collada」形式のサポートが実装されています。

ポリライン セグメント情報を取得

ポリライン (lwpolyline) セグメントをフェッチする機能が追加されました。

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

 日本