Is it possible to pass a directory or batch out multiple files over CLI?
Is it possible to pass a directory or batch out multiple files over CLI?
I'm testing the metrics of a decode operation using IM and another decoder format, I need to keep the overhead of a CLI operation as minimal as possible so I'm looking for a way to decode a folder of .webp images to .png while only calling convert once.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Is it possible to pass a directory or batch out multiple files over CLI?
I suggest something like:
Code: Select all
magick mogrify -format png *.webp
snibgo's IM pages: im.snibgo.com
Re: Is it possible to pass a directory or batch out multiple files over CLI?
Thank you that's exactly what I wanted.