• Language: en

popy_imconv

A convenient multi-image conversion tool. Open a PoPy Command Prompt and type:-

$ popy_imconv *.svg png

This relies on Inkscape to convert all images on disk matching the pattern *.svg to .png format.

A .png file is created for each .svg file in the folder.

Note to get this working correctly you need Inkscape installed and configured on your machine.

Examples

You can convert to many output formats using Inkscape:-

$ popy_imconv *.svg jpg

You can also just convert a single image:-

$ popy_imconv graph.svg tiff

Command line options

usage: popy_imconv [-h] input_images {png,jpg,emf,svg,pdf,wmf,tiff}

Converts images using inkscape.

positional arguments:
  input_images          input images path, you can use *.svg.
  {png,jpg,emf,svg,pdf,wmf,tiff}
                        image output format

optional arguments:
  -h, --help            show this help message and exit
Back to Top