Aspose.Diagram for .NET 18.9 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-51509VSDX to PNG - Line opacity lost in output imageEnhancement
DIAGRAMNET-51510VSDX to SVG - Line opacity lost in output imageEnhancement
DIAGRAMNET-51516Merge Multiple VISIO files into single outputEnhancement
DIAGRAMNET-50272VSD to SVG conversion - Some connection points have wrong position and sizeBug 
DIAGRAMNET-50273VSD to SVG - The alignment of shape text items are incorrectBug
DIAGRAMNET-50487VSD to HTML - Slash character between the value is misplacedBug
DIAGRAMNET-50975VSDX to PDF - Background color of the shape is blackBug
DIAGRAMNET-50976VSDX to HTML - Background color of the shape is blackBug
DIAGRAMNET-50980VSDX to PNG - Numbers inside the diamond shapes are misplacedBug
DIAGRAMNET-51129The text items are not aligned properly on converting a VSD to PDFBug
DIAGRAMNET-51511Additional arrowheads in PNG conversionBug
DIAGRAMNET-51512Additional arrowheads showing in SVG conversionBug

Public API and Backwards 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 them in the Aspose.Diagram support forum.

Added Combine method in Diagram Class

Combines one Diagram object with another Diagram object.

             Diagram diagramF = new Diagram( "f.vsdx");

            Diagram diagramS = new Diagram( "s.vsdx");

            diagramF.Combine(diagramS);