Hey there, I'm pretty new to making extensions in inkscape and I was wondering if it would be possible to add a feature to an extension I'm making that imports a logo image and puts it in inkscape as a new layer. I looked at the documentation but couldn't find anything about doing this.
This should be quite possible. You'll want to make a Generator type extension which returns an SVG Image element, this image element should contain either a link to or an embeded form of the logo that you are trying to embed.
Although it sounds like you might not need an extension.
Hey there, I'm pretty new to making extensions in inkscape and I was wondering if it would be possible to add a feature to an extension I'm making that imports a logo image and puts it in inkscape as a new layer. I looked at the documentation but couldn't find anything about doing this.
This should be quite possible. You'll want to make a Generator type extension which returns an SVG Image element, this image element should contain either a link to or an embeded form of the logo that you are trying to embed.
Although it sounds like you might not need an extension.