Culture-sensitive points format

Hello,
Converting vsd file to svg and noticed some inconsistency. I get different results when my system’s language English and Russian. please inspect attached file. Seems to only be a problem for polygon`s points value and some font-sizeattachment.zip (1015.5 KB)
Currently setting CultureInfo localy helps with this issue

@sukhareva.jj

We are checking it and will get back to you shortly.

@sukhareva.jj

Can you please also share the sample code snippet that you have used to perform the conversion at your end. We will further proceed to assist you accordingly.

Sure , basically I use something like this.
> var diagram = new Diagram(filepath);

                foreach (Page page in diagram.Pages)
                {
                    Aspose.Diagram.Saving.SVGSaveOptions oprions = (Aspose.Diagram.Saving.SVGSaveOptions)Aspose.Diagram.Saving.SaveOptions.CreateSaveOptions(SaveFileFormat.Svg);
                    oprions.ExportHiddenPage = false;
                    oprions.ExportElementAsRectTag = true;
                    oprions.IsExportScaleInMatrix = true;
                    var pageDiagram = new Diagram();
                    pageDiagram.Pages.Clear();
                    pageDiagram.Pages.Add(page);
                    pageDiagram.Save(resultPathString, oprions);

@sukhareva.jj

We have logged an issue as DIAGRAMNET-52739 in our issue tracking system to further investigate this case. We will look into its details and keep you posted with the status of its correction. Please be patient and spare us some time.

We are sorry for the inconvenience.

The issues you have found earlier (filed as DIAGRAMNET-52739) have been fixed in this update. This message was posted using Bugs notification tool by philip.zhou