'How can I convert MDI Icons to SVG Path?
I am using trumbowyg and I need to create some of the custom SVG icons from MDI (Material Design Icons) Icons
Example:
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="trumbowyg-blockquote" viewBox="0 0 72 72">
<path d="............."></path>
</symbol>
<symbol id="trumbowyg-fullscreen" viewBox="0 0 72 72">
<path d="............."></path>
</symbol>
</svg>
Is there a tool that can convert a MDI Icon to SVG so that I can use it with trumbowyg
Solution 1:[1]
First convert MDI to TIFF provide by Microsoft itself (MDI2TIFConverter.exe) on https://www.microsoft.com/en-us/download/details.aspx?id=30328, then convert the obtained raster image to vector format by a tool like potrace http://potrace.sourceforge.net/samples.html
Solution 2:[2]
I have found the answer, use this tool will do: https://icomoon.io/app
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Necklondon |
| Solution 2 | s k |
