Batch command for ImageMagick to convert all files in a directory and sub-directories on windows

前端 未结 3 737
时光说笑
时光说笑 2021-02-07 20:56

I have thousands of SVG\'s in a folder and sub-folders. What I want is to batch convert all of them to jpg or png images.

Can someone

3条回答
  •  迷失自我
    2021-02-07 21:13

    you don't need shell scripting just use the mogrify command

    cd to your image directory

    mogrify -format png *.svg
    

提交回复
热议问题