製品を閲覧する

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.Diagram for .NET 22.6

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

ファイルの詳細

  • Downloads:
  • 1
  • File Size:
  • 12.89MB
  • Date Added:
  • 10/6/2022

ファイルの詳細

曲線形状 VSDX から SVG への変換

Microsoft Visio® VSDX 曲線図または単純な図面を SVG (Scalable Vector Graphic) 画像形式に変換します。以下は、単純な VSDX から SVG へのコンバーター C# コードの例です。

// the path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadSaveConvert();

// call the diagram constructor to load diagram from a VSD file
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");

// create an instance SVG save options class
SVGSaveOptions options = new SVGSaveOptions();
ShapeCollection shapes = options.Shapes;

// get shapes by page index and shape ID, and then add in the shape collection object
shapes.Add(diagram.Pages[0].Shapes.GetShape(1));
shapes.Add(diagram.Pages[0].Shapes.GetShape(2));

// save Visio drawing
diagram.Save(dataDir + "SelectiveShapes_out.svg", options);

Visio® から変換したときの HTML 品質の向上

Microsoft Visio® ダイアグラムを「HTML」形式に変換またはエクスポートする際に、生成される HTML の品質が大幅に向上しました。以下は、単純な VSD から HTML へのコンバーター C# コードの例です。

// For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadSaveConvert();
// Load diagram
Diagram diagram = new Diagram(dataDir + "ExportToHTML.vsd");
// Save diagram
diagram.Save(dataDir + "outputVSDtoHTML.html", SaveFileFormat.HTML);

HTML DPI 解像度を取得または設定

結果の HTML の解像度を 1 インチあたりのドット数 (DPI) で取得または設定する機能。以下は、.NET API を介して HTML ページの解像度を 96 DPI に設定する方法を示す簡単な C# コードの例です。

HTMLSaveOptions option = new HTMLSaveOptions();
option.Resolution = 96;

このリリースで修正された機能、拡張機能、およびバグの完全なリストについては、Aspose.Diagram for .NET 22.6 Release Notes にアクセスしてください。

 日本