Просмотрите наши продукты

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 для .NET 22.6

Скачать  Форум поддержки 

Сведения о файле

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

Сведения о файле

Преобразование изогнутых фигур VSDX в SVG

Преобразование изогнутых схем или простых рисунков Microsoft Visio® VSDX в формат изображения SVG (масштабируемая векторная графика). Ниже приведен простой пример кода C# для конвертера VSDX в SVG:

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

Улучшено качество HTML при преобразовании из Visio®

При преобразовании или экспорте диаграмм Microsoft Visio® в формат HTML качество результирующего HTML было значительно улучшено. Ниже приведен простой пример кода C# для конвертера VSD в HTML:

// 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 в точках на дюйм (DPI). Ниже приведен простой пример кода C#, демонстрирующий, как установить разрешение HTML-страницы на 96 точек на дюйм с помощью .NET API:

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

Полный список функций, улучшений и ошибок, исправленных в этом выпуске, см. на странице Aspose.Diagram for .NET 22.6 Release Notes.

 Русский