Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Win10 How to startup ImageMagick ?
#2
ImageMagick is a command line utility. It runs in a command prompt (aka "black screen"). So, normally:
  • 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.
Sounds complicated? Perhaps. But not that hard, this was how things worked before the invention of windows-based interfaces. And there is a huge advantage. Once you figure out an incantation that works you can put it in a file (aka "script", a .BAT file in Windows) and can then repeat it at will, and this will be much faster that doing (and reembering) all the clicks again in a window-based app. For instance I have a short script to make a smaller version of my photos, with a bit of added contrast and some sharpening where the "core" is:

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/
Reply


Messages In This Thread
Win10 How to startup ImageMagick ? - by vmars316 - 06-07-2019, 04:49 PM
RE: Win10 How to startup ImageMagick ? - by Ofnuts - 06-07-2019, 07:38 PM

Forum Jump: