sentinelweb / cuer

Media queue manager
Apache License 2.0
2 stars 0 forks source link

release ios app #424

Open sentinelweb opened 1 year ago

sentinelweb commented 1 year ago
sentinelweb commented 1 year ago

Yes, there are command line tools that can convert Android vector icons to SVG format. One popular tool is svgexport, a Node.js based command line tool that can convert SVG files to various formats, including PNG and JPEG. It can also import Android vector icons in XML format and convert them to SVG.

Here's an example of how you could use svgexport to convert an Android vector icon to SVG format:

$ svgexport input.xml output.svg

In this example, input.xml is the Android vector icon and output.svg is the output file in SVG format.

Another popular command line tool for vector graphics conversion is rsvg-convert, which is a part of the librsvg library. It can also import Android vector icons in XML format and convert them to SVG.

Here's an example of how you could use rsvg-convert to convert an Android vector icon to SVG format:

$ rsvg-convert input.xml -o output.svg

Note: Before using these tools, make sure to install them on your system and check their documentation for more information on how to use them effectively.