Hi!
Software (incl. versions) where issue can be reproduced:
We’re using NUGET package “Aspose.Diagram” version 24.9.0 for converting a vsdx to pdf and there is an issue with attempting to convert one specific vsdx to pdf using the following code:
...
using (FileStream iFile = new FileStream(@"Data\in.vsdx", FileMode.Open, FileAccess.Read))
{
Diagram diag = new Diagram(iFile);
diag.Save(@"Data\out.pdf", SaveFileFormat.Pdf);
}
...
The issue can be reproduced with the VSDX file that is within the zip:
in.zip (57,1 KB).
The problem is that in the resulting pdf (
out.pdf (161,9 KB)) there is an extra red line in the top-left quadrant of the diagram that is not visible in the original VSDX file.
Thanks in advance!