I'm looking for a way to imitate the behaviour of a theoretical "Fill to Path" functionality. Think about the existing "Stroke to Path" functionality, which basically converts the stroke of something to a path -- I would like to do pretty much the opposite, convert the fill to a path.
Why? Well, I got inspired by this topic. Say that you added some text using
, or even just a single letter. It is easy to convert this single letter to a path, and then convert the stroke of this path to another path (using "Stroke to Path"). But what I would like is to convert the actual fill of this path to another path -- the intention is to create "engraving" letters, i.e. letters existing of a single path (no outline).Take for instance the letter M, it shouldn't be that hard to transform/convert this "outline" letter to an "engraving" letter, right? There must be several ways to accomplish this, for instance by using the Boolean operators (Difference, Exclusion)...? Thanks!
[Edit] I know that both druban and ~suv provided some directions/solutions in that topic, but I wonder whether the "engraving" letter could be generated from the "outline" letter.