Closed maxkaplan closed 4 months ago
Apologies in advance if this has already been discussed, but I could not find any mention of it in previous issues.
Is there any plan to allow users to select multiple image files (or an entire directory) for batch processing?
I understand if this isn't the objective of the software; but it would save me (and possibly others) from having to write commands like this:
Get-ChildItem *.jfif | ForEach-Object { $output = $_.BaseName + ".jpg" magick $_.FullName -quality 100 $output } Get-ChildItem *.webp| ForEach-Object { $output = $_.BaseName + ".jpg" magick $_.FullName -quality 100 $output }
Best,
there is option to process one file or whole directory: select File of Folder next to Execute button
Ok great thanks.
Apologies in advance if this has already been discussed, but I could not find any mention of it in previous issues.
Is there any plan to allow users to select multiple image files (or an entire directory) for batch processing?
I understand if this isn't the objective of the software; but it would save me (and possibly others) from having to write commands like this:
Best,