Looking at the plug-in architecture of Inkscape and I have figured out how to get it to load an .exe through the .inx file.
The question I have is: Is it possible to get Inkscape to load a .dll? If so, how?
Not sure how much this helps, but I would start with
class Input(inkex.InputExtension):
def load(self, stream):
s = stream.read() # now process the input file
There is a tutorial on the Gitlab Wiki
Looking at the plug-in architecture of Inkscape and I have figured out how to get it to load an .exe through the .inx file.
The question I have is: Is it possible to get Inkscape to load a .dll? If so, how?
Not sure how much this helps, but I would start with
class Input(inkex.InputExtension):
def load(self, stream):
s = stream.read() # now process the input file
There is a tutorial on the Gitlab Wiki