Is it possible to use an image (imported png, jpg, etc) and using that image with the pattern along path extension?
I have tried to do that, but I just get an error when I try:
Please first convert objects to paths! (Got [{http://www.w3.org/2000/svg}image].)
Traceback (most recent call last):
File "pathalongpath.py", line 284, in <module>
e.affect()
File "D:\Cad\inkscape\share\extensions\inkex.py", line 227, in affect
self.effect()
File "pathalongpath.py", line 203, in effect
self.prepareSelectionList()
File "pathalongpath.py", line 144, in prepareSelectionList
self.objectsToPaths(self.skeletons)
File "D:\Cad\inkscape\share\extensions\pathmodifier.py", line 237, in objectsToPaths
aList[newnode.get('id')]=newnode
AttributeError: 'NoneType' object has no attribute 'get'
Then I try to convert the image file into pattern.
Now, when I try the same, Inkscape do something completely weird that make nonsense to me. Instead of putting the image (now converted to pattern) on the path, it draw a very weird new path onto and beside the image location.
In the above description, I've make sure that the path is the topmost object. If I repeat the above step, but making the path the bottom object, the results also getting very weird.
Is this a known bug, or is it me doing something wrong?