GNOME Bugzilla – Bug 629318
'Import Path' imports empty path(s) from SVG 1.1 document.
Last modified: 2015-11-29 23:09:57 UTC
Created attachment 169988 [details] The SVG file generated by Blender 2.53 representing two connected polygons (quads). - Importing paths from SVG document resulted with empty path(s). Steps to reproduce: 1. File->Open and select SVG document (attached), click Open. 2. Set checked "Import Paths" and "Merge Imported Path *". 3. Select "Path" dialog (i.e. from the menu Windows->Dockable Dialogs->Paths). 4. Try to show "Imported Path". The bug: Path is empty. (*) If this option is unchecked the both paths are imported as empty.
Expanding the step 2 (click 'OK'). 2. Set checked "Import Paths" and "Merge Imported Path *", click 'OK'.
A meaning of "empty path" is that it exist as an entry in "Path dialog" but it cannot be showed/displayed on canvas.
Fixed in current git. The problem occurred due to the space at the end of the "points" string. Gimp miscalculated the number-count and then rejected the path data, since 9 numbers cannot properly describe a set of coordinates (needs an even number of numbers). commit 9ffaf94170269b9ee976b772d1319fac8cbf24c6 Author: Simon Budig <simon@budig.de> Date: Sat Sep 11 01:51:13 2010 +0200 fix path import of polylines/polygons