Browse our Products

Aspose.Diagram for Python via .NET 25.12 Release Notes

KeySummaryCategory
DIAGRAMNET-53799Shapes are missing when saving vsd to vsdxEnhancement
DIAGRAMNET-53838Aspose.Diagram convert Vsdx to HTML styling issueBug
DIAGRAMNET-53841Export VSD-template to svg-format results in extra graphics in shapeBug
DIAGRAMNET-53842Export VSD-template to svg-format results attribute construct error when opening the svgBug
DIAGRAMNET-53843System.NullReferenceException when adding hyperlinkBug
DIAGRAMNET-53845Broken shapes grouping in Visio document after simple Open/Save documentBug
DIAGRAMNET-53851Problem converting VSDX to SVG(line position wrong)Bug
DIAGRAMNET-53852Lost shapes when converting VSDX to SVGBug
DIAGRAMNET-53856Converting VSDX to SVG. The text labels become gigantic in sizeBug
DIAGRAMNET-53857VSD to PDF - Text is getting wrappedBug

Public API and Backward Incompatible Changes

The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Diagram for .NET. If you have concerns about any change listed, please raise it on the Aspose.Diagram support forum.

Adds LowCodeLoadOptions in Aspose.Diagram.LowCode

  • Options for loading template file.
Aspose.Diagram.LowCode.LowCodeLoadOptions loadOptions = new Aspose.Diagram.LowCode.LowCodeLoadOptions();
loadOptions.InputFile = "input.vsdx";

Adds LowCodeSaveOptions in Aspose.Diagram.LowCode

  • Options for saving generated results in low code way.
Aspose.Diagram.LowCode.LowCodeSaveOptions saveOptions = new Aspose.Diagram.LowCode.LowCodeSaveOptions();
saveOptions.OutputFile = Constants.destPath + "53776.pdf";

Adds PdfConverter in Aspose.Diagram.LowCode

  • Converter for converting template file to pdf.
Aspose.Diagram.LowCode.PdfConverter.Process(loadOptions, saveOptions);

Adds DiagramConverter in Aspose.Diagram.LowCode

  • Converter for converting template file to diagram.
DiagramConverter.Process(loadOptions, saveOptions);