TeaM-TL / FotoKilof

GUI for ImageMagick and Wand
MIT License
287 stars 18 forks source link

Multiple File Processing? #178

Closed maxkaplan closed 2 months ago

maxkaplan commented 2 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,

TeaM-TL commented 2 months ago

there is option to process one file or whole directory: select File of Folder next to Execute button

maxkaplan commented 2 months ago

Ok great thanks.