ImageMagick: convert to keep same name for converted image

前端 未结 4 1369
暖寄归人
暖寄归人 2020-12-24 13:03

I am converting .psd to .png files inside folder with one. How to keep same name of every file in folder with different extension ?

For example I enter in folder ima

4条回答
  •  伪装坚强ぢ
    2020-12-24 13:59

    Use the -set and formatting options.

    convert *.psd -set filename:base "%[basename]" "%[filename:base].png"
    

    See "Long Form Attribute Percent Escapes" and "Filename Percent Escapes" docs.

    Update

    The mogrify utility that ships with imagemagick can also be used.

    mogrify -format png *.psd
    

    Note: Be careful with mogrify as the docs state...

    This tool is similiar to convert except that the original image file is overwritten (unless you change the file suffix with the -format option) with any changes you request.

提交回复
热议问题