Hello Team,
I am using Aspose free version and trying to convert Visio file(vsd) in to JSON string using Aspose.Diagram. I know that there are some limitations with free version so that after conversion I am getting only 10 nodes for 1 file and 6 nodes for another visio file.
I just wanted to know that If I take licence for Aspose.Diagram after conversion in JSON string will i get all the nodes present in the Visio file??. Please confirm me with this I will take licence for Aspose.Diagram.
Thanks in advance.
Answer
You reported that, when using the free (evaluation) version of Aspose.Diagram, only 10 nodes are returned for one Visio file and 6 nodes for another.
It is common for evaluation builds of Aspose libraries to impose restrictions on the amount of data that can be processed, such as limiting the number of diagram elements that are exported. When a valid commercial license is applied, these evaluation‑only limits are typically removed, so the JSON output should contain all shapes/nodes present in the Visio file.
Applying a license (C# example)
// C# example
Aspose.Diagram.License license = new Aspose.Diagram.License();
license.SetLicense("Aspose.Diagram.lic"); // path to your .lic file
After setting the license, load the Visio file and perform the conversion to JSON as usual; the full set of nodes should be included.
If you obtain a license and still notice missing nodes, please provide the exact code you are using and the Visio files so the issue can be examined further.
@P_Madhuri
Thanks for your inqueries.
Please refer to the following document:Licensing|Documentation
If the correct license is set, there are no limitations .