Difference between revisions of "How to batch shrink images for the web using ImageMagick"

From steamWiki
Jump to: navigation, search
(Created page with "==JPG== This command works well to shrink 6MB JPGs from my DSLR to a more manageable 300kB. You may need to adjust your -resize command. Check out the reference links for de...")
 
(No difference)

Latest revision as of 09:56, 19 March 2020

JPG

This command works well to shrink 6MB JPGs from my DSLR to a more manageable 300kB. You may need to adjust your -resize command. Check out the reference links for details (especially on the gaussian-blur).

mogrify -strip -interlace Plane -gaussian-blur 0.05 -quality 85% -resize 2144x1424 -path ./sm *.JPG

References