Aspose.Diagram
20.6.0
See the version list below for details.
dotnet add package Aspose.Diagram --version 20.6.0
NuGet\Install-Package Aspose.Diagram -Version 20.6.0
<PackageReference Include="Aspose.Diagram" Version="20.6.0" />
paket add Aspose.Diagram --version 20.6.0
#r "nuget: Aspose.Diagram, 20.6.0"
// Install Aspose.Diagram as a Cake Addin
#addin nuget:?package=Aspose.Diagram&version=20.6.0
// Install Aspose.Diagram as a Cake Tool
#tool nuget:?package=Aspose.Diagram&version=20.6.0
.NET API for Microsoft Visio® File Formats
Aspose.Diagram for .NET API is a solution for Microsoft Visio file manipulation requirements. It allows the .NET applications to read, write, export and process Microsoft Visio diagrams while supporting all Visio objects & properties including shapes, pages, images, shape masters, stencils, text, layers, header, footers, user-defined cells, hyperlinks, file protection, geometries, text boxes, and comments.
Aspose.Diagram for .NET can also be used to apply protection to the Microsoft Visio drawings by locking backgrounds, stencils (master) as well as shapes and styles to avoid any accidental amendments.
Visio File Processing Features
- Create Microsoft Visio diagrams from scratch via API.
- Read or write Microsoft Visio drawings.
- Export Visio diagrams to various popular formats including PDF, images, HTML and more.
- Print Visio diagrams on physical or virtual printer.
- Access Visio diagram properties for manipulation or just inspection.
- Protect Visio diagrams via applying locks on various levels.
- Manipulate the embedded OLE objects in the Visio diagrams.
Enhancements in Version 20.6
- Added support of
.NET Framework 5.0
.
For the detailed notes, please visit Aspose.Diagram for .NET 20.6 Release Notes.
Read & Write Visio Formats
Microsoft Visio: VSDX, VSX, VTX, VDX, VSSX, VSTX, VSDM, VSSM, VSTM
Save Visio Diagrams As
Fixed Layout: PDF, XPS Images: JPEG, PNG, BMP, TIFF, SVG, EMF Web: HTML Other: XAML, SWF
Read Visio Formats
Microsoft Visio: VDW, VSD, VSS, VST
Platform Independence
You can use Aspose.Diagram for .NET to build any type of a 32-bit or 64-bit .NET application including ASP.NET, WCF, WinForms, UWP, .NET Standard, .NET Core etc. You can also use Aspose.Diagram for .NET to build applications with Mono.
Getting Started with Aspose.Diagram for .NET
Are you ready to give Aspose.Diagram for .NET a try? Simply execute Install-Package Aspose.Diagram
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Diagram for .NET and want to upgrade the version, please execute Update-Package Aspose.Diagram
to get the latest version.
Load a VSS Template to Create a Visio Diagram with C# Code
You can execute below code snippet to see how Aspose.Diagram API performs in your own environment or check the GitHub Repository for other common usage scenarios.
// create a new diagram
var diagram = new Diagram(dataDir + "template.vss");
// add a new rectangle shape
long shapeId = diagram.AddShape(4.25, 5.5, 2, 1, @"Rectangle", 0);
var shape = diagram.Pages[0].Shapes.GetShape(shapeId);
shape.Text.Value.Add(new Txt(@"Rectangle text."));
// add a new hexagon shape
shapeId = diagram.AddShape(7.0, 5.5, 2, 2, @"Hexagon", 0);
shape = diagram.Pages[0].Shapes.GetShape(shapeId);
shape.Text.Value.Add(new Txt(@"Hexagon text."));
// save the diagram in VDX format
diagram.Save(dir + "output.vdx", SaveFileFormat.VDX);
Retrieve Layers of a Visio VSDX Diagram
Aspose.Diagram for .NET allows .NET applications to work with layers of Visio drawings. The following C# code example shows how to fetch all the layers of a VSDX file:
// load source Visio diagram
var diagram = new Diagram(dataDir + "Drawing1.vsdx");
// get diagram page
var page = diagram.Pages.GetPage("Page-1");
// iterate through the layers and print properties
foreach (Layer layer in page.PageSheet.Layers)
{
Console.WriteLine("Name: " + layer.Name.Value);
Console.WriteLine("Visibility: " + layer.Visible.Value);
Console.WriteLine("Status: " + layer.Status.Value);
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
This package has no dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Aspose.Diagram:
Package | Downloads |
---|---|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications. |
|
SenseNet.Preview.Aspose.PreviewImageGenerators
Aspose Preview image generator classes for the sensenet platform. |
|
SenseNet.Preview.Aspose
sensenet Aspose Preview Provider makes it possible to generate and serve preview images using Aspose libraries. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
23.1.0 | 1,220 | 1/10/2023 |
22.12.0 | 2,270 | 12/13/2022 |
22.11.0 | 3,953 | 11/10/2022 |
22.10.0 | 5,754 | 10/11/2022 |
22.9.0 | 10,297 | 9/6/2022 |
22.8.0 | 11,215 | 8/3/2022 |
22.7.0 | 8,200 | 7/5/2022 |
22.6.0 | 7,807 | 6/7/2022 |
22.5.0 | 7,761 | 5/10/2022 |
22.4.0 | 7,632 | 4/12/2022 |
22.3.0 | 12,064 | 3/8/2022 |
22.2.0 | 25,079 | 2/11/2022 |
22.1.0 | 8,426 | 1/10/2022 |
21.12.0 | 20,982 | 12/7/2021 |
21.11.0 | 8,332 | 11/11/2021 |
21.10.0 | 4,582 | 10/12/2021 |
21.9.0 | 38,233 | 9/7/2021 |
21.8.0 | 8,695 | 8/4/2021 |
21.7.0 | 7,317 | 7/6/2021 |
21.6.0 | 3,578 | 6/8/2021 |
21.5.0 | 30,103 | 5/11/2021 |
21.4.0 | 8,785 | 4/12/2021 |
21.3.1 | 6,713 | 3/16/2021 |
21.3.0 | 918 | 3/12/2021 |
21.2.0 | 37,186 | 2/2/2021 |
21.1.0 | 5,021 | 1/5/2021 |
20.12.0 | 7,648 | 12/8/2020 |
20.11.0 | 13,271 | 11/3/2020 |
20.10.0 | 6,741 | 10/12/2020 |
20.9.0 | 3,166 | 9/9/2020 |
20.8.0 | 3,271 | 8/11/2020 |
20.7.0 | 6,083 | 7/15/2020 |
20.6.0 | 4,680 | 6/11/2020 |
20.5.0 | 13,401 | 5/12/2020 |
20.4.0 | 20,410 | 4/9/2020 |
20.3.0 | 7,368 | 3/12/2020 |
20.2.0 | 8,108 | 2/13/2020 |
20.1.0 | 5,152 | 1/10/2020 |
19.12.0 | 4,690 | 12/13/2019 |
19.11.0 | 4,430 | 11/14/2019 |
19.10.0 | 1,429 | 10/18/2019 |
19.9.0 | 17,395 | 9/19/2019 |
19.8.0 | 22,824 | 8/7/2019 |
19.7.0 | 3,658 | 7/9/2019 |
19.6.0 | 8,849 | 6/13/2019 |
19.5.0 | 3,334 | 5/16/2019 |
19.4.0 | 11,701 | 4/16/2019 |
19.3.0 | 6,323 | 3/15/2019 |
19.2.0 | 8,324 | 2/19/2019 |
19.1.0 | 2,621 | 1/22/2019 |
18.12.0 | 3,224 | 12/18/2018 |
18.11.0 | 3,551 | 11/19/2018 |
18.10.0 | 1,398 | 10/18/2018 |
18.9.0 | 2,435 | 9/14/2018 |
18.8.0 | 3,612 | 8/8/2018 |
18.7.0 | 7,966 | 7/13/2018 |
18.6.0 | 2,138 | 6/11/2018 |
18.5.0 | 2,601 | 5/17/2018 |
18.4.0 | 1,993 | 4/13/2018 |
18.3.0 | 2,740 | 3/9/2018 |
18.2.0 | 4,812 | 2/7/2018 |
18.1.0 | 13,455 | 1/17/2018 |
17.12.0 | 2,460 | 12/15/2017 |
17.11.0 | 1,436 | 11/20/2017 |
17.10.0 | 1,972 | 10/23/2017 |
17.9.0 | 1,365 | 9/20/2017 |
17.8.0 | 2,337 | 8/22/2017 |
17.7.0 | 1,232 | 7/18/2017 |
17.6.0 | 1,360 | 6/20/2017 |
17.5.0 | 1,286 | 5/19/2017 |
17.4.0 | 4,121 | 4/18/2017 |
17.3.0 | 1,762 | 3/17/2017 |
17.2.0 | 1,468 | 2/17/2017 |
17.1.0 | 2,128 | 1/13/2017 |
16.12.0 | 1,611 | 12/16/2016 |
16.11.1 | 1,293 | 11/14/2016 |
16.11.0 | 1,477 | 11/11/2016 |
16.10.0 | 1,539 | 10/14/2016 |
6.8.0 | 1,451 | 9/9/2016 |
6.7.0 | 1,611 | 8/8/2016 |
6.6.0 | 5,754 | 7/12/2016 |
6.5.0 | 4,299 | 6/14/2016 |
6.4.0 | 1,975 | 5/20/2016 |
6.3.0 | 14,986 | 4/22/2016 |
6.2.0 | 1,253 | 3/31/2016 |
6.1.0.1 | 1,327 | 3/1/2016 |
6.1.0 | 1,465 | 2/26/2016 |
6.0.0 | 4,268 | 1/19/2016 |
5.9.0 | 1,745 | 12/18/2015 |
5.8.0 | 1,934 | 11/24/2015 |
5.7.0 | 8,668 | 10/16/2015 |
5.6.0 | 1,644 | 9/9/2015 |
5.5.0 | 2,304 | 8/6/2015 |
5.4.0 | 1,373 | 7/1/2015 |
5.3.0 | 1,690 | 5/22/2015 |
5.2.0 | 1,557 | 4/20/2015 |
5.1.0 | 2,231 | 2/28/2015 |
5.0.0 | 1,579 | 1/16/2015 |
4.6.0 | 1,727 | 12/4/2014 |
4.5.0 | 1,685 | 10/22/2014 |
4.4.0 | 1,695 | 9/12/2014 |
4.3.0 | 1,707 | 8/8/2014 |
4.2.0 | 1,658 | 7/4/2014 |
4.1.0 | 1,587 | 5/27/2014 |
4.0.0 | 1,327 | 5/14/2014 |
3.9.0 | 1,552 | 4/25/2014 |
3.8.0 | 1,876 | 3/27/2014 |
3.7.0 | 1,894 | 2/28/2014 |
3.6.0.1 | 1,504 | 12/20/2013 |
3.6.0 | 1,223 | 12/12/2013 |
3.5.0 | 4,081 | 9/26/2013 |
3.4.0 | 1,370 | 8/20/2013 |
3.3.0 | 1,531 | 6/4/2013 |
3.2.0 | 1,625 | 5/16/2013 |
3.1.0 | 1,446 | 4/3/2013 |
3.0.0 | 1,496 | 2/20/2013 |
2.9.0 | 1,458 | 12/17/2012 |
2.8.0 | 1,673 | 11/12/2012 |
2.7.0 | 1,669 | 10/2/2012 |
2.6.0 | 1,519 | 8/28/2012 |
2.5.0 | 1,461 | 8/13/2012 |
2.4.0 | 1,474 | 7/13/2012 |
2.3.0 | 1,528 | 6/4/2012 |
2.2.0 | 1,516 | 4/28/2012 |
2.1.0 | 1,542 | 4/9/2012 |
2.0.0 | 1,489 | 3/8/2012 |
1.9.0.1 | 1,467 | 2/16/2012 |
1.9.0 | 1,461 | 2/6/2012 |
1.8.1 | 1,485 | 1/24/2012 |
1.8.0 | 1,571 | 1/13/2012 |