06-07-2019, 07:38 PM
ImageMagick is a command line utility. It runs in a command prompt (aka "black screen"). So, normally:
Of course it took me a while to figure out, but Id did that only once... and used it many times since.
Some more information on the command prompt:
https://www.bleepingcomputer.com/tutoria...roduction/
https://red-dot-geek.com/basic-windows-c...-commands/
- You start a command prompt (seach for "command" in the Start menu).
- You use the "CD" command to navigate to the folder where you keep your files: cd c:\Users\{your_id}\My Documents\Pictures
- You issue "commands": magick convert the_file.png the_file.jpg or even worse magick convert the_file.png {a_whole_lot_of_parameters_you_have_to_figure_out} the_file.jpg`. The documentation, Google, DuckDuckGo, your favorite forums are your friends.
Code:
magick convert "$f" -modulate 100,120 -geometry 3000 -sharpen 0x1.0 -quality 85 "$dir/$(basename "$f" .JPG).jpg"
Of course it took me a while to figure out, but Id did that only once... and used it many times since.
Some more information on the command prompt:
https://www.bleepingcomputer.com/tutoria...roduction/
https://red-dot-geek.com/basic-windows-c...-commands/