Use the convert
program to convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more. See Command Line Processing for advice on how to structure your convert
command or see below for example usages of the command.
Download
https://www.imagemagick.org/script/binary-releases.php#windows
Example
1 2 3 4 |
cd 'C:\Program Files\ImageMagick-6.9.0-Q16' $fichero='F:\power\SampleImages\01.jpg' $ficheroout='F:\power\01corregido.jpg' .\convert.exe $fichero -resize 360x100 -quality 95 -brightness-contrast 45 -auto-gamma -median 4 $ficheroout |
