When using this svg-file: https://upload.wikimedia.org/wikipedia/commons/4/4d/Petra-timeline.svg And running the following code, an exception is raised in FileSvgReader.Read(). ``` string svgFilePath = @"Petra-timeline.svg"; var settings = new WpfDrawingSettings { IncludeRuntime = false, TextAsGeometry = true }; try { using (var reader = new FileSvgReader(settings)) { DrawingGroup drawingGroup = reader.Read(svgFilePath); } } ``` <img width="891" height="290" alt="Image" src="https://github.com/user-attachments/assets/b0420f42-7eba-4317-85fb-3a68bca2b4a6" />
When using this svg-file: https://upload.wikimedia.org/wikipedia/commons/4/4d/Petra-timeline.svg
And running the following code, an exception is raised in FileSvgReader.Read().